summaryrefslogtreecommitdiffstats
path: root/conduits/abbrowserconduit/abbrowser-conduit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'conduits/abbrowserconduit/abbrowser-conduit.cpp')
-rw-r--r--conduits/abbrowserconduit/abbrowser-conduit.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/conduits/abbrowserconduit/abbrowser-conduit.cpp b/conduits/abbrowserconduit/abbrowser-conduit.cpp
index c4441b1..6e63596 100644
--- a/conduits/abbrowserconduit/abbrowser-conduit.cpp
+++ b/conduits/abbrowserconduit/abbrowser-conduit.cpp
@@ -530,7 +530,7 @@ void AbbrowserConduit::showAddresses(
if ( syncMode().isTest() )
{
- TQTimer::singleShot(0, this, TQT_SLOT(slotTestRecord()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotTestRecord()));
return true;
}
@@ -580,7 +580,7 @@ void AbbrowserConduit::showAddresses(
for this, and no longer purge the whole addressbook before the sync to
prevent data loss in case of connection loss. */
- TQTimer::singleShot(0, this, TQT_SLOT(slotPalmRecToPC()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPalmRecToPC()));
return true;
}
@@ -596,7 +596,7 @@ void AbbrowserConduit::slotPalmRecToPC()
{
DEBUGKPILOT << fname << ": Done; change to PCtoHH phase." << endl;
abiter = aBook->begin();
- TQTimer::singleShot(0, this, TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPCRecToPalm()));
return;
}
@@ -614,7 +614,7 @@ void AbbrowserConduit::slotPalmRecToPC()
if(!palmRec)
{
abiter = aBook->begin();
- TQTimer::singleShot(0, this, TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPCRecToPalm()));
return;
}
@@ -622,7 +622,7 @@ void AbbrowserConduit::slotPalmRecToPC()
if(syncedIds.contains(palmRec->id()))
{
KPILOT_DELETE(palmRec);
- TQTimer::singleShot(0, this, TQT_SLOT(slotPalmRecToPC()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPalmRecToPC()));
return;
}
@@ -650,7 +650,7 @@ void AbbrowserConduit::slotPalmRecToPC()
KPILOT_DELETE(palmRec);
KPILOT_DELETE(backupRec);
- TQTimer::singleShot(0, this, TQT_SLOT(slotPalmRecToPC()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPalmRecToPC()));
}
@@ -664,7 +664,7 @@ void AbbrowserConduit::slotPCRecToPalm()
{
DEBUGKPILOT << fname << ": Done; change to delete records." << endl;
pilotindex = 0;
- TQTimer::singleShot(0, this, TQT_SLOT(slotDeletedRecord()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotDeletedRecord()));
return;
}
@@ -678,7 +678,7 @@ void AbbrowserConduit::slotPCRecToPalm()
{
DEBUGKPILOT << fname << ": address with id " << ad.uid() <<
" marked archived, so don't sync." << endl;
- TQTimer::singleShot(0, this, TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPCRecToPalm()));
return;
}
@@ -691,7 +691,7 @@ void AbbrowserConduit::slotPCRecToPalm()
DEBUGKPILOT << fname << ": This is a new record." << endl;
// it's a new item(no record ID and not inserted by the Palm -> PC sync), so add it
syncAddressee(ad, 0L, 0L);
- TQTimer::singleShot(0, this, TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPCRecToPalm()));
return;
}
@@ -699,7 +699,7 @@ void AbbrowserConduit::slotPCRecToPalm()
if (syncedIds.contains(rid))
{
DEBUGKPILOT << ": address with id " << rid << " already synced." << endl;
- TQTimer::singleShot(0, this, TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPCRecToPalm()));
return;
}
@@ -742,7 +742,7 @@ void AbbrowserConduit::slotPCRecToPalm()
syncedIds.append(rid);
// done with the sync process, go on with the next one:
- TQTimer::singleShot(0, this, TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPCRecToPalm()));
}
@@ -755,7 +755,7 @@ void AbbrowserConduit::slotDeletedRecord()
if(!backupRec || isFirstSync() )
{
KPILOT_DELETE(backupRec);
- TQTimer::singleShot(0, this, TQT_SLOT(slotDeleteUnsyncedPCRecords()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotDeleteUnsyncedPCRecords()));
return;
}
@@ -796,7 +796,7 @@ void AbbrowserConduit::slotDeletedRecord()
KPILOT_DELETE(palmRec);
KPILOT_DELETE(backupAddr);
KPILOT_DELETE(backupRec);
- TQTimer::singleShot(0, this, TQT_SLOT(slotDeletedRecord()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotDeletedRecord()));
}
@@ -829,7 +829,7 @@ void AbbrowserConduit::slotDeleteUnsyncedPCRecords()
}
}
}
- TQTimer::singleShot(0, this, TQT_SLOT(slotDeleteUnsyncedHHRecords()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotDeleteUnsyncedHHRecords()));
}
@@ -852,7 +852,7 @@ void AbbrowserConduit::slotDeleteUnsyncedHHRecords()
}
}
}
- TQTimer::singleShot(0, this, TQT_SLOT(slotCleanup()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotCleanup()));
}
@@ -1893,5 +1893,5 @@ void AbbrowserConduit::slotTestRecord()
// Schedule more work.
++pilotindex;
- TQTimer::singleShot(0, this, TQT_SLOT(slotTestRecord()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotTestRecord()));
}