diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:54:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:54:56 +0900 |
commit | ad963f6e626458b1f1da4e3ec6204643d2d6909b (patch) | |
tree | d3eefdba670c68a7c23e9d2bb2b14b0b1f5e2093 /example/main.cpp | |
parent | e867c97d483fa51344f1a3dda1d20cc499224428 (diff) | |
download | tqscintilla-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.cpp | 2 |
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(); } |