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 /conduits/abbrowserconduit/resolutionDialog.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 'conduits/abbrowserconduit/resolutionDialog.cpp')
-rw-r--r-- | conduits/abbrowserconduit/resolutionDialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/conduits/abbrowserconduit/resolutionDialog.cpp b/conduits/abbrowserconduit/resolutionDialog.cpp index dea368b..1dd4e65 100644 --- a/conduits/abbrowserconduit/resolutionDialog.cpp +++ b/conduits/abbrowserconduit/resolutionDialog.cpp @@ -193,16 +193,16 @@ ResolutionDlg::ResolutionDlg( TQWidget* parent, KPilotLink*fH, if (tickleTimer) { - connect( tickleTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(_tickle())); + connect( tickleTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(_tickle())); // tickle the palm every 10 seconds to prevent a timeout until the // sync is really finished. tickleTimer->start( 10000 ); } - connect(fWidget->fKeepBoth, TQT_SIGNAL(clicked()), TQT_SLOT(slotKeepBoth())); - connect(fWidget->fBackupValues, TQT_SIGNAL(clicked()), TQT_SLOT(slotUseBackup())); - connect(fWidget->fPalmValues, TQT_SIGNAL(clicked()), TQT_SLOT(slotUsePalm())); - connect(fWidget->fPCValues, TQT_SIGNAL(clicked()), TQT_SLOT(slotUsePC())); + connect(fWidget->fKeepBoth, TQ_SIGNAL(clicked()), TQ_SLOT(slotKeepBoth())); + connect(fWidget->fBackupValues, TQ_SIGNAL(clicked()), TQ_SLOT(slotUseBackup())); + connect(fWidget->fPalmValues, TQ_SIGNAL(clicked()), TQ_SLOT(slotUsePalm())); + connect(fWidget->fPCValues, TQ_SIGNAL(clicked()), TQ_SLOT(slotUsePC())); } void ResolutionDlg::adjustButtons(ResolutionTable*tab) |