summaryrefslogtreecommitdiffstats
path: root/example/application.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example/application.cpp')
-rw-r--r--example/application.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/example/application.cpp b/example/application.cpp
index 92a7123..b832def 100644
--- a/example/application.cpp
+++ b/example/application.cpp
@@ -29,8 +29,8 @@
#include <tqwhatsthis.h>
#include <tqsimplerichtext.h>
-#include <qextscintilla.h>
-#include <qextscintillaprinter.h>
+#include <tqextscintilla.h>
+#include <tqextscintillaprinter.h>
#include "filesave.xpm"
#include "fileopen.xpm"
@@ -39,7 +39,7 @@
ApplicationWindow::ApplicationWindow()
: TQMainWindow( 0, "example application main window", WDestructiveClose | WGroupLeader )
{
- printer = new QextScintillaPrinter( TQPrinter::HighResolution );
+ printer = new TQextScintillaPrinter( TQPrinter::HighResolution );
TQPixmap openIcon, saveIcon, printIcon;
TQToolBar * fileTools = new TQToolBar( this, "file operations" );
@@ -127,7 +127,7 @@ ApplicationWindow::ApplicationWindow()
help->insertSeparator();
help->insertItem( "What's &This", this, TQT_SLOT(whatsThis()), SHIFT+Key_F1 );
- e = new QextScintilla( this, "editor" );
+ e = new TQextScintilla( this, "editor" );
e->setFocus();
setCentralWidget( e );
statusBar()->message( "Ready", 2000 );
@@ -261,7 +261,7 @@ void ApplicationWindow::about()
{
TQMessageBox::about( this, "TQScintilla Application Example",
"This example demonstrates a simple use of "
- "QextScintilla and QextScintillaPrinter.");
+ "TQextScintilla and TQextScintillaPrinter.");
}