summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:46:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:46:37 +0900
commit13a90d07994f44f6eedc8d43b8d745341eb31497 (patch)
treeb0c2269b13b181ce971a080a7086480ac169bf0b /src/main.cpp
parent50e174961141962046c59391fd648ed004cb3a08 (diff)
downloadkchmviewer-13a90d07994f44f6eedc8d43b8d745341eb31497.tar.gz
kchmviewer-13a90d07994f44f6eedc8d43b8d745341eb31497.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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