diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-12-09 01:40:38 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-12-09 02:07:16 +0100 |
commit | 347f0b28701932eba7eb063d9093e446b81debae (patch) | |
tree | b6941843b550f83221b13a3b2643b5a95cd428db /example/application.cpp | |
parent | 5da5cb1c824c608159126a82011d8a8943b360e0 (diff) | |
download | tqscintilla-347f0b28.tar.gz tqscintilla-347f0b28.zip |
Rename Qt => TQt.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'example/application.cpp')
-rw-r--r-- | example/application.cpp | 10 |
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."); } |