Skip to content

Commit

Permalink
fix build with updated master
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-ha committed Dec 3, 2024
1 parent f72cf29 commit c668102
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/apiDocumentationSamples/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <QskTabBar.h>
#include <QskTabButton.h>
#include <QskTabView.h>
#include <QskTextInput.h>
#include <QskTextField.h>
#include <QskTextLabel.h>
#include <QskWindow.h>

Expand Down Expand Up @@ -249,9 +249,9 @@ namespace
t->addTab( "tab 3 ", new QskTextLabel( "tab content 3" ) );
return t;
}
if( name == "TextInput" )
if( name == "TextField" )
{
auto t = new QskTextInput;
auto t = new QskTextField;
t->setPreferredWidth( 100 );
return t;
}
Expand Down

0 comments on commit c668102

Please sign in to comment.