summaryrefslogtreecommitdiffstats
path: root/lib/actionQueue.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:06 +0900
commit7c95b68b3568737a10901c3e12d316e06dc4015f (patch)
treef9e52f0ee62e755155aedfe6fb4a99e590d9d055 /lib/actionQueue.cpp
parentbdb5acdfbfe8973f2b45fe54193ad543064c1ac5 (diff)
downloadkpilot-7c95b68b3568737a10901c3e12d316e06dc4015f.tar.gz
kpilot-7c95b68b3568737a10901c3e12d316e06dc4015f.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/actionQueue.cpp')
-rw-r--r--lib/actionQueue.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/actionQueue.cpp b/lib/actionQueue.cpp
index 6936297..7b99aea 100644
--- a/lib/actionQueue.cpp
+++ b/lib/actionQueue.cpp
@@ -156,17 +156,17 @@ void ActionQueue::actionCompleted(SyncAction *b)
<< endl;
#endif
- TQObject::connect(a, TQT_SIGNAL(logMessage(const TQString &)),
- this, TQT_SIGNAL(logMessage(const TQString &)));
- TQObject::connect(a, TQT_SIGNAL(logError(const TQString &)),
- this, TQT_SIGNAL(logMessage(const TQString &)));
- TQObject::connect(a, TQT_SIGNAL(logProgress(const TQString &, int)),
- this, TQT_SIGNAL(logProgress(const TQString &, int)));
- TQObject::connect(a, TQT_SIGNAL(syncDone(SyncAction *)),
- this, TQT_SLOT(actionCompleted(SyncAction *)));
+ TQObject::connect(a, TQ_SIGNAL(logMessage(const TQString &)),
+ this, TQ_SIGNAL(logMessage(const TQString &)));
+ TQObject::connect(a, TQ_SIGNAL(logError(const TQString &)),
+ this, TQ_SIGNAL(logMessage(const TQString &)));
+ TQObject::connect(a, TQ_SIGNAL(logProgress(const TQString &, int)),
+ this, TQ_SIGNAL(logProgress(const TQString &, int)));
+ TQObject::connect(a, TQ_SIGNAL(syncDone(SyncAction *)),
+ this, TQ_SLOT(actionCompleted(SyncAction *)));
// Run the action picked from the queue when we get back
// to the event loop.
- TQTimer::singleShot(0,a,TQT_SLOT(execConduit()));
+ TQTimer::singleShot(0,a,TQ_SLOT(execConduit()));
}