summaryrefslogtreecommitdiffstats
path: root/conduits/docconduit/doc-conflictdialog.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-07 14:52:43 +0900
commitf9289944a1f0a34b3df76770f27461e6b3752b46 (patch)
tree131dc32a84bc1385c2823c210c0974bbc0d0ff6c /conduits/docconduit/doc-conflictdialog.cpp
parent3b5ccc656fde07ed416181abf061b4fcd90e2830 (diff)
downloadkpilot-f9289944.tar.gz
kpilot-f9289944.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 'conduits/docconduit/doc-conflictdialog.cpp')
-rw-r--r--conduits/docconduit/doc-conflictdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/conduits/docconduit/doc-conflictdialog.cpp b/conduits/docconduit/doc-conflictdialog.cpp
index 59df40b..c22c58b 100644
--- a/conduits/docconduit/doc-conflictdialog.cpp
+++ b/conduits/docconduit/doc-conflictdialog.cpp
@@ -75,7 +75,7 @@ ResolutionDialog::ResolutionDialog( TQWidget* parent, const TQString& caption, s
// Invisible button group for the information buttons to use the same slot for all of them (see Dallheimer's book, page 309f)
TQButtonGroup *bgroup = new TQButtonGroup( this );
bgroup->hide();
- TQObject::connect(bgroup, TQT_SIGNAL(clicked(int)), this, TQT_SLOT(slotInfo(int)));
+ TQObject::connect(bgroup, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(slotInfo(int)));
if (syncInfo) {
DEBUGKPILOT<<"Adding resolution options for the databases "<<endl;
@@ -127,7 +127,7 @@ ResolutionDialog::ResolutionDialog( TQWidget* parent, const TQString& caption, s
if (fHandle) tickleTimer=new TQTimer(this, "TickleTimer");
if (tickleTimer) {
- connect( tickleTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(_tickle()) );
+ connect( tickleTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(_tickle()) );
tickleTimer->start( 10000 ); // tickle the palm every 10 seconds to prevent a timeout until the sync is really finished.
}