summaryrefslogtreecommitdiffstats
path: root/ksirc/KSTicker/ksttest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/KSTicker/ksttest.cpp')
-rw-r--r--ksirc/KSTicker/ksttest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksirc/KSTicker/ksttest.cpp b/ksirc/KSTicker/ksttest.cpp
index f11be8da..88669f8d 100644
--- a/ksirc/KSTicker/ksttest.cpp
+++ b/ksirc/KSTicker/ksttest.cpp
@@ -80,10 +80,10 @@ int main(int argc, char **argv){
StdInTicker *kst = new StdInTicker();
TQSocketNotifier *sn = new TQSocketNotifier(0, TQSocketNotifier::Read);
- TQObject::connect(sn, TQT_SIGNAL(activated(int)),
- kst, TQT_SLOT(readsocket(int)));
- TQObject::connect(kst, TQT_SIGNAL(doubleClick()), kst, TQT_SLOT(end()));
- TQObject::connect(kst, TQT_SIGNAL(closing()), kst, TQT_SLOT(end()));
+ TQObject::connect(sn, TQ_SIGNAL(activated(int)),
+ kst, TQ_SLOT(readsocket(int)));
+ TQObject::connect(kst, TQ_SIGNAL(doubleClick()), kst, TQ_SLOT(end()));
+ TQObject::connect(kst, TQ_SIGNAL(closing()), kst, TQ_SLOT(end()));
a.setMainWidget(kst);
kst->show();
return a.exec();