summaryrefslogtreecommitdiffstats
path: root/conduits/vcalconduit/hhtopcstate.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:31:06 +0900
committerMichele Calgaro <[email protected]>2024-01-04 10:31:06 +0900
commit7c95b68b3568737a10901c3e12d316e06dc4015f (patch)
treef9e52f0ee62e755155aedfe6fb4a99e590d9d055 /conduits/vcalconduit/hhtopcstate.cpp
parentbdb5acdfbfe8973f2b45fe54193ad543064c1ac5 (diff)
downloadkpilot-7c95b68b3568737a10901c3e12d316e06dc4015f.tar.gz
kpilot-7c95b68b3568737a10901c3e12d316e06dc4015f.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'conduits/vcalconduit/hhtopcstate.cpp')
-rw-r--r--conduits/vcalconduit/hhtopcstate.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/conduits/vcalconduit/hhtopcstate.cpp b/conduits/vcalconduit/hhtopcstate.cpp
index 82024f1..7f53586 100644
--- a/conduits/vcalconduit/hhtopcstate.cpp
+++ b/conduits/vcalconduit/hhtopcstate.cpp
@@ -186,13 +186,13 @@ void VCalConduitBase::slotPalmRecToPC()
if ( syncMode()==SyncMode::eCopyHHToPC )
{
emit logMessage(i18n("Cleaning up ..."));
- TQTimer::singleShot(0, this, TQT_SLOT(cleanup()));
+ TQTimer::singleShot(0, this, TQ_SLOT(cleanup()));
return;
}
else
{
emit logMessage(i18n("Copying records to Pilot ..."));
- TQTimer::singleShot(0 ,this,TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0 ,this,TQ_SLOT(slotPCRecToPalm()));
return;
}
}
@@ -244,6 +244,6 @@ void VCalConduitBase::slotPalmRecToPC()
KPILOT_DELETE(r);
KPILOT_DELETE(s);
- TQTimer::singleShot(0,this,TQT_SLOT(slotPalmRecToPC()));
+ TQTimer::singleShot(0,this,TQ_SLOT(slotPalmRecToPC()));
}
*/