summaryrefslogtreecommitdiffstats
path: root/lib/recordConduit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/recordConduit.cpp')
-rw-r--r--lib/recordConduit.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/recordConduit.cpp b/lib/recordConduit.cpp
index 7c92152..31aab7a 100644
--- a/lib/recordConduit.cpp
+++ b/lib/recordConduit.cpp
@@ -76,7 +76,7 @@ long version_record_conduit = Pilot::PLUGIN_API;
fIDListIterator = fIDList.begin();
fTimer = new TQTimer(this);
- connect(fTimer,TQT_SIGNAL(timeout()),this,TQT_SLOT(process()));
+ connect(fTimer,TQ_SIGNAL(timeout()),this,TQ_SLOT(process()));
fTimer->start(0,false); // Fire as often as possible to prompt processing
return true;
}
@@ -327,7 +327,7 @@ RecordConduit::~RecordConduit()
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;
}
@@ -342,7 +342,7 @@ void RecordConduit::slotPalmRecToPC()
if ( getSyncDirection() == SyncAction::eCopyPCToHH )
{
mPCIter = mPCData->begin();
- TQTimer::singleShot(0, this, TQT_SLOT(slotPCRecToPalm()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPCRecToPalm()));
return;
}
@@ -354,7 +354,7 @@ void RecordConduit::slotPalmRecToPC()
if ( !palmRec )
{
mPCIter = mPCData->begin();
- TQTimer::singleShot( 0, this, TQT_SLOT( slotPCRecToPalm() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotPCRecToPalm() ) );
return;
}
@@ -362,7 +362,7 @@ void RecordConduit::slotPalmRecToPC()
if ( mSyncedIds.contains( palmRec->id() ) )
{
KPILOT_DELETE( palmRec );
- TQTimer::singleShot( 0, this, TQT_SLOT( slotPalmRecToPC() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotPalmRecToPC() ) );
return;
}
@@ -389,7 +389,7 @@ void RecordConduit::slotPalmRecToPC()
KPILOT_DELETE( palmRec );
KPILOT_DELETE( backupRec );
- TQTimer::singleShot(0, this, TQT_SLOT(slotPalmRecToPC()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotPalmRecToPC()));
}
@@ -402,7 +402,7 @@ void RecordConduit::slotPCRecToPalm()
mPCData->atEnd( mPCIter ) )
{
mPalmIndex = 0;
- TQTimer::singleShot( 0, this, TQT_SLOT( slotDeletedRecord() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotDeletedRecord() ) );
return;
}
@@ -418,7 +418,7 @@ void RecordConduit::slotPCRecToPalm()
" marked archived, so don't sync." << endl;
#endif
KPILOT_DELETE( pcEntry );
- TQTimer::singleShot( 0, this, TQT_SLOT( slotPCRecToPalm() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotPCRecToPalm() ) );
return;
}
@@ -428,7 +428,7 @@ void RecordConduit::slotPCRecToPalm()
// it's a new item(no record ID and not inserted by the Palm -> PC sync), so add it
syncEntry( pcEntry, 0L, 0L );
KPILOT_DELETE( pcEntry );
- TQTimer::singleShot( 0, this, TQT_SLOT( slotPCRecToPalm() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotPCRecToPalm() ) );
return;
}
@@ -439,7 +439,7 @@ void RecordConduit::slotPCRecToPalm()
DEBUGKPILOT << ": address with id " << recID << " already synced." << endl;
#endif
KPILOT_DELETE( pcEntry );
- TQTimer::singleShot( 0, this, TQT_SLOT( slotPCRecToPalm() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotPCRecToPalm() ) );
return;
}
@@ -470,7 +470,7 @@ void RecordConduit::slotPCRecToPalm()
mSyncedIds.append( recID );
// 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() ) );
}
@@ -483,7 +483,7 @@ void RecordConduit::slotDeletedRecord()
if( !backupRec || isFirstSync() )
{
KPILOT_DELETE(backupRec);
- TQTimer::singleShot( 0, this, TQT_SLOT( slotDeleteUnsyncedPCRecords() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotDeleteUnsyncedPCRecords() ) );
return;
}
@@ -491,7 +491,7 @@ void RecordConduit::slotDeletedRecord()
if ( mSyncedIds.contains( backupRec->id() ) )
{
KPILOT_DELETE( backupRec );
- TQTimer::singleShot( 0, this, TQT_SLOT( slotDeletedRecord() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotDeletedRecord() ) );
return;
}
@@ -513,7 +513,7 @@ void RecordConduit::slotDeletedRecord()
KPILOT_DELETE( backupEntry );
KPILOT_DELETE( palmRec );
KPILOT_DELETE( backupRec );
- TQTimer::singleShot( 0, this, TQT_SLOT( slotDeletedRecord() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotDeletedRecord() ) );
}
@@ -546,7 +546,7 @@ void RecordConduit::slotDeleteUnsyncedPCRecords()
}
}
}
- TQTimer::singleShot(0, this, TQT_SLOT(slotDeleteUnsyncedHHRecords()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotDeleteUnsyncedHHRecords()));
}
@@ -570,7 +570,7 @@ void RecordConduit::slotDeleteUnsyncedHHRecords()
}
}
}
- TQTimer::singleShot( 0, this, TQT_SLOT( slotCleanup() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotCleanup() ) );
}