summaryrefslogtreecommitdiffstats
path: root/examples/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/main.cpp')
-rw-r--r--examples/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/main.cpp b/examples/main.cpp
index 81cc4c20d..4d3a1d239 100644
--- a/examples/main.cpp
+++ b/examples/main.cpp
@@ -28,6 +28,6 @@ int main(int argc, char *argv[])
TQApplication app(argc, argv);
PkExample *example = new PkExample;
example->show();
- app.connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()));
+ app.connect(&app, TQ_SIGNAL(lastWindowClosed()), &app, TQ_SLOT(quit()));
return app.exec();
}