summaryrefslogtreecommitdiffstats
path: root/kicker-applets/ktimemon/timemon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker-applets/ktimemon/timemon.cpp')
-rw-r--r--kicker-applets/ktimemon/timemon.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kicker-applets/ktimemon/timemon.cpp b/kicker-applets/ktimemon/timemon.cpp
index 3d0d3da..3fe5372 100644
--- a/kicker-applets/ktimemon/timemon.cpp
+++ b/kicker-applets/ktimemon/timemon.cpp
@@ -230,7 +230,7 @@ KTimeMon::KTimeMon(const TQString& configFile, Type type, int actions,
vertical = conf->readBoolEntry("Vertical", true);
timer = new TQTimer(this);
- connect(timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(timeout()));
+ connect(timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(timeout()));
timer->start(interval);
sample = new KSample(this, autoScale, pageScale, swapScale, ctxScale);
@@ -249,8 +249,8 @@ KTimeMon::KTimeMon(const TQString& configFile, Type type, int actions,
menu->insertSeparator();
menu->insertItem(SmallIcon( "help" ), i18n("Help"), hmenu->menu(), 1);
- menu->connectItem(2, this, TQT_SLOT(configure()));
- menu->connectItem(4, this, TQT_SLOT(orientation()));
+ menu->connectItem(2, this, TQ_SLOT(configure()));
+ menu->connectItem(4, this, TQ_SLOT(orientation()));
menu->setCheckable(true);
@@ -413,8 +413,8 @@ void KTimeMon::runCommand(int index)
bgProcess = new KShellProcess;
*bgProcess << mouseActionCommand[index];
- connect(bgProcess, TQT_SIGNAL(receivedStderr(TDEProcess *, char *, int)),
- this, TQT_SLOT(commandStderr(TDEProcess *, char *, int)));
+ connect(bgProcess, TQ_SIGNAL(receivedStderr(TDEProcess *, char *, int)),
+ this, TQ_SLOT(commandStderr(TDEProcess *, char *, int)));
bgProcess->start(TDEProcess::DontCare, TDEProcess::Stderr);
}