summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-07 19:46:37 +0900
committerMichele Calgaro <[email protected]>2024-01-09 10:51:34 +0900
commit5a0966ca1f9829702643b8e991be29636aed8d5a (patch)
tree92d84a30c3aca1034b25629a25c9071da1fd7d71 /src/main.cpp
parentd2f01bb5cdfc087c691837782a4f8daaacc70f42 (diff)
downloadkchmviewer-5a0966ca1f9829702643b8e991be29636aed8d5a.tar.gz
kchmviewer-5a0966ca1f9829702643b8e991be29636aed8d5a.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 13a90d07994f44f6eedc8d43b8d745341eb31497)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 35542f4..3bfe936 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -87,7 +87,7 @@ int main( int argc, char ** argv )
mainWindow->show();
#if !defined(USE_KDE)
- app.connect( &app, TQT_SIGNAL(lastWindowClosed()), &app, TQT_SLOT(quit()) );
+ app.connect( &app, TQ_SIGNAL(lastWindowClosed()), &app, TQ_SLOT(quit()) );
#else
app.setMainWidget( mainWindow );
#endif