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-04 10:31:06 +0900 |
commit | 7c95b68b3568737a10901c3e12d316e06dc4015f (patch) | |
tree | f9e52f0ee62e755155aedfe6fb4a99e590d9d055 /lib/syncAction.cpp | |
parent | bdb5acdfbfe8973f2b45fe54193ad543064c1ac5 (diff) | |
download | kpilot-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/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); } |