summaryrefslogtreecommitdiffstats
path: root/krusader/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:34:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:34:58 +0900
commit184496dac00969ac18f548eb465a07e929522504 (patch)
treea56ab8cba4d88dc39f2203a9e86e4034bde8b86a /krusader/main.cpp
parenta309e299010cd4bee39cb00b372dae5964d580b8 (diff)
downloadkrusader-184496dac00969ac18f548eb465a07e929522504.tar.gz
krusader-184496dac00969ac18f548eb465a07e929522504.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'krusader/main.cpp')
-rw-r--r--krusader/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/krusader/main.cpp b/krusader/main.cpp
index cecfe89..0f87661 100644
--- a/krusader/main.cpp
+++ b/krusader/main.cpp
@@ -231,8 +231,8 @@ int main(int argc, char *argv[]) {
signal(SIGHUP,sigterm_handler);
// make sure we receive X's focus in/out events
- TQObject::connect(&app, TQT_SIGNAL(windowActive()), krusader.slot, TQT_SLOT(windowActive()));
- TQObject::connect(&app, TQT_SIGNAL(windowInactive()), krusader.slot, TQT_SLOT(windowInactive()));
+ TQObject::connect(&app, TQ_SIGNAL(windowActive()), krusader.slot, TQ_SLOT(windowActive()));
+ TQObject::connect(&app, TQ_SIGNAL(windowInactive()), krusader.slot, TQ_SLOT(windowInactive()));
// and set krusader to be the main widget in it
app.setMainWidget(&krusader);