diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:31:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 14:52:43 +0900 |
commit | f9289944a1f0a34b3df76770f27461e6b3752b46 (patch) | |
tree | 131dc32a84bc1385c2823c210c0974bbc0d0ff6c /lib/syncAction.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 <[email protected]>
(cherry picked from commit 7c95b68b3568737a10901c3e12d316e06dc4015f)
Diffstat (limited to 'lib/syncAction.cpp')
-rw-r--r-- | lib/syncAction.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/syncAction.cpp b/lib/syncAction.cpp index 30951ad..ee0ff5e 100644 --- a/lib/syncAction.cpp +++ b/lib/syncAction.cpp @@ -113,7 +113,7 @@ SyncAction::~SyncAction() bool SyncAction::delayDone() { - TQTimer::singleShot(0,this,TQT_SLOT(delayedDoneSlot())); + TQTimer::singleShot(0,this,TQ_SLOT(delayedDoneSlot())); return true; } @@ -272,7 +272,7 @@ void SyncAction::startTickle(unsigned timeout) } else { - connect(deviceLink(),TQT_SIGNAL(timeout()),this,TQT_SIGNAL(timeout())); + connect(deviceLink(),TQ_SIGNAL(timeout()),this,TQ_SIGNAL(timeout())); deviceLink()->startTickle(timeout); } } @@ -286,7 +286,7 @@ void SyncAction::stopTickle() } else { - disconnect(deviceLink(),TQT_SIGNAL(timeout()),this,TQT_SIGNAL(timeout())); + disconnect(deviceLink(),TQ_SIGNAL(timeout()),this,TQ_SIGNAL(timeout())); deviceLink()->stopTickle(); } } @@ -322,8 +322,8 @@ int SyncAction::questionYesNo(const TQString & text, if ( (timeout > 0) && ( deviceLink() ) ) { - TQObject::connect(deviceLink(), TQT_SIGNAL(timeout()), - dialog, TQT_SLOT(slotCancel())); + TQObject::connect(deviceLink(), TQ_SIGNAL(timeout()), + dialog, TQ_SLOT(slotCancel())); startTickle(timeout); } @@ -435,8 +435,8 @@ int SyncAction::questionYesNoCancel(const TQString & text, if ( (timeout > 0) && (deviceLink()) ) { - TQObject::connect(deviceLink(), TQT_SIGNAL(timeout()), - dialog, TQT_SLOT(slotCancel())); + TQObject::connect(deviceLink(), TQ_SIGNAL(timeout()), + dialog, TQ_SLOT(slotCancel())); startTickle(timeout); } |