diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:31:06 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 14:52:43 +0900 |
| commit | f9289944a1f0a34b3df76770f27461e6b3752b46 (patch) | |
| tree | 131dc32a84bc1385c2823c210c0974bbc0d0ff6c /lib/plugin.cpp | |
| parent | 3b5ccc656fde07ed416181abf061b4fcd90e2830 (diff) | |
| download | kpilot-f9289944a1f0a34b3df76770f27461e6b3752b46.tar.gz kpilot-f9289944a1f0a34b3df76770f27461e6b3752b46.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7c95b68b3568737a10901c3e12d316e06dc4015f)
Diffstat (limited to 'lib/plugin.cpp')
| -rw-r--r-- | lib/plugin.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/plugin.cpp b/lib/plugin.cpp index 1013a34..c208598 100644 --- a/lib/plugin.cpp +++ b/lib/plugin.cpp @@ -607,17 +607,17 @@ ConduitProxy::ConduitProxy(KPilotLink *p, addSyncLogEntry(i18n("[Conduit %1]").arg(fDesktopName)); // Handle the syncDone signal properly & unload the conduit. - TQObject::connect(fConduit,TQT_SIGNAL(syncDone(SyncAction *)), - this,TQT_SLOT(execDone(SyncAction *))); + TQObject::connect(fConduit,TQ_SIGNAL(syncDone(SyncAction *)), + this,TQ_SLOT(execDone(SyncAction *))); // Proxy all the log and error messages. - TQObject::connect(fConduit,TQT_SIGNAL(logMessage(const TQString &)), - this,TQT_SIGNAL(logMessage(const TQString &))); - TQObject::connect(fConduit,TQT_SIGNAL(logError(const TQString &)), - this,TQT_SIGNAL(logError(const TQString &))); - TQObject::connect(fConduit,TQT_SIGNAL(logProgress(const TQString &,int)), - this,TQT_SIGNAL(logProgress(const TQString &,int))); - - TQTimer::singleShot(0,fConduit,TQT_SLOT(execConduit())); + TQObject::connect(fConduit,TQ_SIGNAL(logMessage(const TQString &)), + this,TQ_SIGNAL(logMessage(const TQString &))); + TQObject::connect(fConduit,TQ_SIGNAL(logError(const TQString &)), + this,TQ_SIGNAL(logError(const TQString &))); + TQObject::connect(fConduit,TQ_SIGNAL(logProgress(const TQString &,int)), + this,TQ_SIGNAL(logProgress(const TQString &,int))); + + TQTimer::singleShot(0,fConduit,TQ_SLOT(execConduit())); return true; } |
