summaryrefslogtreecommitdiffstats
path: root/conduits/docconduit/doc-conduit.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:39:08 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:39:08 -0600
commit46d967c53bb9221c29b1d357086d600a01a97706 (patch)
treeca7261e0162da2f49d6c9fe73890b56e54212205 /conduits/docconduit/doc-conduit.cc
parente2574db445c23b812a26740475cbacbbd964639b (diff)
downloadkpilot-46d967c53bb9221c29b1d357086d600a01a97706.tar.gz
kpilot-46d967c53bb9221c29b1d357086d600a01a97706.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'conduits/docconduit/doc-conduit.cc')
-rw-r--r--conduits/docconduit/doc-conduit.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/conduits/docconduit/doc-conduit.cc b/conduits/docconduit/doc-conduit.cc
index 287b443..31a075b 100644
--- a/conduits/docconduit/doc-conduit.cc
+++ b/conduits/docconduit/doc-conduit.cc
@@ -378,10 +378,10 @@ bool DOCConduit::doSync(docSyncInfo &sinfo)
if (!postSyncAction(database, sinfo, res))
emit logError(i18n("Unable to install the locally created PalmDOC %1 to the handheld.")
- .tqarg(TQString::fromLatin1(sinfo.dbinfo.name)));
+ .arg(TQString::fromLatin1(sinfo.dbinfo.name)));
if (!res)
emit logError(i18n("Conversion of PalmDOC \"%1\" failed.")
- .tqarg(TQString::fromLatin1(sinfo.dbinfo.name)));
+ .arg(TQString::fromLatin1(sinfo.dbinfo.name)));
// disconnect(&docconverter, TQT_SIGNAL(logError(const TQString &)), TQT_SIGNAL(logError(const TQString &)));
// disconnect(&docconverter, TQT_SIGNAL(logMessage(const TQString &)), TQT_SIGNAL(logMessage(const TQString &)));
// KPILOT_DELETE(database);
@@ -389,7 +389,7 @@ bool DOCConduit::doSync(docSyncInfo &sinfo)
else
{
emit logError(i18n("Unable to open or create the database %1.")
- .tqarg(TQString::fromLatin1(sinfo.dbinfo.name)));
+ .arg(TQString::fromLatin1(sinfo.dbinfo.name)));
}
return res;
}
@@ -665,7 +665,7 @@ void DOCConduit::syncDatabases() {
case eSyncDelete:
case eSyncPDAToPC:
case eSyncPCToPDA:
- emit logMessage(i18n("Synchronizing text \"%1\"").tqarg(sinfo.handheldDB));
+ emit logMessage(i18n("Synchronizing text \"%1\"").arg(sinfo.handheldDB));
if (!doSync(sinfo)) {
// The sync could not be done, so inform the user (the error message should probably issued inside doSync)
#ifdef DEBUG