summaryrefslogtreecommitdiffstats
path: root/lib/kpilotdevicelink.cc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:08 -0600
commit46d967c53bb9221c29b1d357086d600a01a97706 (patch)
treeca7261e0162da2f49d6c9fe73890b56e54212205 /lib/kpilotdevicelink.cc
parente2574db445c23b812a26740475cbacbbd964639b (diff)
downloadkpilot-46d967c53bb9221c29b1d357086d600a01a97706.tar.gz
kpilot-46d967c53bb9221c29b1d357086d600a01a97706.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'lib/kpilotdevicelink.cc')
-rw-r--r--lib/kpilotdevicelink.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/kpilotdevicelink.cc b/lib/kpilotdevicelink.cc
index 9f661cd..84e26da 100644
--- a/lib/kpilotdevicelink.cc
+++ b/lib/kpilotdevicelink.cc
@@ -146,7 +146,7 @@ void DeviceCommThread::reset()
{
TQApplication::postEvent(link(), new DeviceCommEvent(EventLogMessage,
i18n("Could not open device: %1 (will retry)")
- .tqarg(link()->pilotPath() )));
+ .arg(link()->pilotPath() )));
}
link()->fMessages->reset();
@@ -185,7 +185,7 @@ void DeviceCommThread::openDevice()
{
TQApplication::postEvent(link(), new DeviceCommEvent(EventLogMessage,
i18n("Trying to open device %1...")
- .tqarg(link()->fPilotPath)));
+ .arg(link()->fPilotPath)));
}
// if we're not supposed to be done, try to open the main pilot
@@ -259,7 +259,7 @@ bool DeviceCommThread::open(const TQString &device)
{
e = errno;
msg = i18n("Cannot create socket for communicating "
- "with the Pilot (%1)").tqarg(errorMessage(e));
+ "with the Pilot (%1)").arg(errorMessage(e));
DEBUGKPILOT << msg << endl;
DEBUGKPILOT << "(" << strerror(e) << ")" << endl;
@@ -286,7 +286,7 @@ bool DeviceCommThread::open(const TQString &device)
<< strerror(errno) << "]" << endl;
e = errno;
- msg = i18n("Cannot open Pilot port \"%1\". ").tqarg(link()->fRealPilotPath);
+ msg = i18n("Cannot open Pilot port \"%1\". ").arg(link()->fRealPilotPath);
DEBUGKPILOT << msg << endl;
DEBUGKPILOT << "(" << strerror(e) << ")" << endl;
@@ -409,7 +409,7 @@ void DeviceCommThread::acceptDevice()
WARNINGKPILOT << "pi_accept returned: [" << s << "]" << endl;
TQApplication::postEvent(link(), new DeviceCommEvent(EventLogError, i18n("Cannot accept Pilot (%1)")
- .tqarg(TQString::fromLocal8Bit(s))));
+ .arg(TQString::fromLocal8Bit(s))));
link()->fLinkStatus = PilotLinkError;
reset();
@@ -424,7 +424,7 @@ void DeviceCommThread::acceptDevice()
WARNINGKPILOT << "Already connected or unable to connect!" << endl;
TQApplication::postEvent(link(), new DeviceCommEvent(EventLogError, i18n("Cannot accept Pilot (%1)")
- .tqarg(i18n("already connected"))));
+ .arg(i18n("already connected"))));
reset();
return;
@@ -707,7 +707,7 @@ void KPilotDeviceLink::checkDevice()
if (!(fi.isReadable() && fi.isWritable()))
{
emit logError(i18n("Pilot device %1 is not read-write.")
- .tqarg(fPilotPath));
+ .arg(fPilotPath));
}
}
else
@@ -718,7 +718,7 @@ void KPilotDeviceLink::checkDevice()
emit
logError(i18n("Pilot device %1 does not exist. "
"Probably it is a USB device and will appear during a HotSync.")
- .tqarg(fPilotPath));
+ .arg(fPilotPath));
// Suppress all normal and error messages about opening the device.
fMessages->block(Messages::OpenMessage | Messages::OpenFailMessage,
true);