summaryrefslogtreecommitdiffstats
path: root/example/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 11:54:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 11:54:56 +0900
commitad963f6e626458b1f1da4e3ec6204643d2d6909b (patch)
treed3eefdba670c68a7c23e9d2bb2b14b0b1f5e2093 /example/main.cpp
parente867c97d483fa51344f1a3dda1d20cc499224428 (diff)
downloadtqscintilla-ad963f6e626458b1f1da4e3ec6204643d2d6909b.tar.gz
tqscintilla-ad963f6e626458b1f1da4e3ec6204643d2d6909b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'example/main.cpp')
-rw-r--r--example/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/main.cpp b/example/main.cpp
index a24a49f..5c7af61 100644
--- a/example/main.cpp
+++ b/example/main.cpp
@@ -16,6 +16,6 @@ int main( int argc, char ** argv ) {
ApplicationWindow *mw = new ApplicationWindow();
mw->setCaption( "TQScintilla Example - Application" );
mw->show();
- a.connect( &a, TQT_SIGNAL(lastWindowClosed()), &a, TQT_SLOT(quit()) );
+ a.connect( &a, TQ_SIGNAL(lastWindowClosed()), &a, TQ_SLOT(quit()) );
return a.exec();
}