summaryrefslogtreecommitdiffstats
path: root/kpilot/pilotDaemon.cc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:02 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:02 -0600
commitd55caffa62947ca831ae0c21aada3b55eec24027 (patch)
tree8a2a0ff56d7023011016a7e385f0f3b60ffea095 /kpilot/pilotDaemon.cc
parent631a19d8c5c5f69dc0d941c1997806fb422c79a6 (diff)
downloadkpilot-d55caffa62947ca831ae0c21aada3b55eec24027.tar.gz
kpilot-d55caffa62947ca831ae0c21aada3b55eec24027.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 631a19d8c5c5f69dc0d941c1997806fb422c79a6.
Diffstat (limited to 'kpilot/pilotDaemon.cc')
-rw-r--r--kpilot/pilotDaemon.cc56
1 files changed, 28 insertions, 28 deletions
diff --git a/kpilot/pilotDaemon.cc b/kpilot/pilotDaemon.cc
index f3158bd..bbd8233 100644
--- a/kpilot/pilotDaemon.cc
+++ b/kpilot/pilotDaemon.cc
@@ -166,7 +166,7 @@ void PilotDaemonTray::setupWidget()
SyncAction::SyncMode::name(SyncAction::SyncMode::a) + once, \
(int)(SyncAction::SyncMode::a));
fSyncTypeMenu->insertItem(i18n("Default (%1)")
- .arg(SyncAction::SyncMode::name((SyncAction::SyncMode::Mode)KPilotSettings::syncType())),
+ .tqarg(SyncAction::SyncMode::name((SyncAction::SyncMode::Mode)KPilotSettings::syncType())),
0);
fSyncTypeMenu->insertSeparator();
@@ -279,7 +279,7 @@ void PilotDaemonTray::endHotSync()
PilotDaemon::PilotDaemon() :
DCOPObject("KPilotDaemonIface"),
- fDaemonStatus(INIT),
+ fDaemontqStatus(INIT),
fPostSyncAction(None),
fPilotLink(0L),
fNextSyncType(SyncAction::SyncMode::eHotSync,true),
@@ -297,7 +297,7 @@ PilotDaemon::PilotDaemon() :
setupPilotLink();
reloadSettings();
- if (fDaemonStatus == ERROR)
+ if (fDaemontqStatus == ERROR)
{
WARNINGKPILOT << "Connecting to device failed." << endl;
return;
@@ -403,7 +403,7 @@ void PilotDaemon::showTray()
DEBUGKPILOT << fname << ": Tray icon displayed." << endl;
#endif
- updateTrayStatus();
+ updateTraytqStatus();
}
/* DCOP ASYNC */ void PilotDaemon::setTempDevice(TQString d)
@@ -420,7 +420,7 @@ void PilotDaemon::showTray()
{
FUNCTIONSETUP;
- switch (fDaemonStatus)
+ switch (fDaemontqStatus)
{
case INIT:
case HOTSYNC_END:
@@ -508,7 +508,7 @@ void PilotDaemon::showTray()
}
}
- updateTrayStatus();
+ updateTraytqStatus();
logProgress(TQString(),0);
}
@@ -516,7 +516,7 @@ void PilotDaemon::showTray()
{
fIsListening=false;
fTray->changeIcon(PilotDaemonTray::NotListening);
- fDaemonStatus=NOT_LISTENING;
+ fDaemontqStatus=NOT_LISTENING;
fPilotLink->close();
}
@@ -524,7 +524,7 @@ void PilotDaemon::showTray()
{
fIsListening=true;
fTray->changeIcon(PilotDaemonTray::Normal);
- fDaemonStatus=INIT;
+ fDaemontqStatus=INIT;
fPilotLink->reset();
}
@@ -616,13 +616,13 @@ bool PilotDaemon::setupPilotLink()
// Using switch to make sure we cover all the cases.
//
//
- switch (fDaemonStatus)
+ switch (fDaemontqStatus)
{
case INIT:
case HOTSYNC_END:
case ERROR:
case NOT_LISTENING:
- getKPilot().daemonStatus(KPilotDCOP::DaemonQuit);
+ getKPilot().daemontqStatus(KPilotDCOP::DaemonQuit);
kapp->quit();
break;
case READY:
@@ -655,7 +655,7 @@ bool PilotDaemon::setupPilotLink()
return;
}
- updateTrayStatus();
+ updateTraytqStatus();
if (fTray && (fTray->fSyncTypeMenu))
{
@@ -667,7 +667,7 @@ bool PilotDaemon::setupPilotLink()
}
}
- getLogger().logMessage(i18n("Next HotSync will be: %1. ").arg(fNextSyncType.name()) +
+ getLogger().logMessage(i18n("Next HotSync will be: %1. ").tqarg(fNextSyncType.name()) +
i18n("Please press the HotSync button."));
}
@@ -799,8 +799,8 @@ bool PilotDaemon::killDaemonOnExit()
return KPilotSettings::killDaemonAtExit();
}
-typedef enum { NotLocked=0, Locked=1, DCOPError=2 } KDesktopLockStatus;
-static KDesktopLockStatus isKDesktopLockRunning()
+typedef enum { NotLocked=0, Locked=1, DCOPError=2 } KDesktopLocktqStatus;
+static KDesktopLocktqStatus isKDesktopLockRunning()
{
if (!KPilotSettings::screenlockSecure()) return NotLocked;
@@ -847,7 +847,7 @@ static void informOthers(KPilotDCOP_stub &kpilot,
LoggerDCOP_stub &log,
LoggerDCOP_stub &filelog)
{
- kpilot.daemonStatus(KPilotDCOP::StartOfHotSync);
+ kpilot.daemontqStatus(KPilotDCOP::StartOfHotSync);
log.logStartSync();
filelog.logStartSync();
}
@@ -864,7 +864,7 @@ static bool isSyncPossible(ActionQueue *fSyncStack,
* just tell the user that the sync couldn't run because
* of that.
*/
- int kpilotstatus = kpilot.kpiloStatus();
+ int kpilotstatus = kpilot.kpilotqStatus();
DCOPStub::Status callstatus = kpilot.status();
#ifdef DEBUG
@@ -1003,7 +1003,7 @@ bool PilotDaemon::shouldBackup()
(void) PilotDatabase::instanceCount();
#endif
- fDaemonStatus = HOTSYNC_START ;
+ fDaemontqStatus = HOTSYNC_START ;
if (fTray)
{
fTray->startHotSync();
@@ -1120,7 +1120,7 @@ launch:
TQTimer::singleShot(0,fSyncStack,TQT_SLOT(execConduit()));
- updateTrayStatus();
+ updateTraytqStatus();
}
/* slot */ void PilotDaemon::logMessage(const TQString & s)
@@ -1129,7 +1129,7 @@ launch:
getLogger().logMessage(s);
getFileLogger().logMessage(s);
- updateTrayStatus(s);
+ updateTraytqStatus(s);
}
/* slot */ void PilotDaemon::logError(const TQString & s)
@@ -1138,7 +1138,7 @@ launch:
getLogger().logError(s);
getFileLogger().logError(s);
- updateTrayStatus(s);
+ updateTraytqStatus(s);
}
/* slot */ void PilotDaemon::logProgress(const TQString & s, int i)
@@ -1147,7 +1147,7 @@ launch:
getLogger().logProgress(s, i);
getFileLogger().logProgress(s, i);
- if (!s.isEmpty()) updateTrayStatus(s);
+ if (!s.isEmpty()) updateTraytqStatus(s);
}
/* slot */ void PilotDaemon::endHotSync()
@@ -1166,15 +1166,15 @@ launch:
getFileLogger().logProgress(i18n("HotSync Completed.<br>"), 100);
getLogger().logEndSync();
getFileLogger().logEndSync();
- getKPilot().daemonStatus(KPilotDCOP::EndOfHotSync);
- KPilotSettings::setLastSyncTime(TQDateTime::currentDateTime());
+ getKPilot().daemontqStatus(KPilotDCOP::EndOfHotSync);
+ KPilotSettings::setLastSyncTime(TQDateTime::tqcurrentDateTime());
KPilotSettings::self()->writeConfig();
- fDaemonStatus = HOTSYNC_END;
+ fDaemontqStatus = HOTSYNC_END;
if (fPostSyncAction & Quit)
{
- getKPilot().daemonStatus(KPilotDCOP::DaemonQuit);
+ getKPilot().daemontqStatus(KPilotDCOP::DaemonQuit);
kapp->quit();
}
if (fPostSyncAction & ReloadSettings)
@@ -1191,7 +1191,7 @@ launch:
(void) PilotDatabase::instanceCount();
- updateTrayStatus();
+ updateTraytqStatus();
}
@@ -1264,7 +1264,7 @@ void PilotDaemon::slotRunConfig()
}
}
-void PilotDaemon::updateTrayStatus(const TQString &s)
+void PilotDaemon::updateTraytqStatus(const TQString &s)
{
if (!fTray) return;
@@ -1272,7 +1272,7 @@ void PilotDaemon::updateTrayStatus(const TQString &s)
tipText.append( s );
tipText.append( CSL1(" ") );
tipText.append( i18n("Next sync is %1.")
- .arg( fNextSyncType.name() ) );
+ .tqarg( fNextSyncType.name() ) );
tipText.append( CSL1("</qt>") );
TQToolTip::remove(fTray);