summaryrefslogtreecommitdiffstats
path: root/conduits/abbrowserconduit/resolutionDialog.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 /conduits/abbrowserconduit/resolutionDialog.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 'conduits/abbrowserconduit/resolutionDialog.cpp')
-rw-r--r--conduits/abbrowserconduit/resolutionDialog.cpp10
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)