summaryrefslogtreecommitdiffstats
path: root/lib/syncAction.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 /lib/syncAction.cc
parente2574db445c23b812a26740475cbacbbd964639b (diff)
downloadkpilot-46d967c53bb9221c29b1d357086d600a01a97706.tar.gz
kpilot-46d967c53bb9221c29b1d357086d600a01a97706.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'lib/syncAction.cc')
-rw-r--r--lib/syncAction.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/syncAction.cc b/lib/syncAction.cc
index 404498b..444226e 100644
--- a/lib/syncAction.cc
+++ b/lib/syncAction.cc
@@ -101,7 +101,7 @@ SyncAction::~SyncAction()
if (!r)
{
emit logError(i18n("The conduit %1 could not be executed.")
- .tqarg(TQString::fromLatin1(name())));
+ .arg(TQString::fromLatin1(name())));
delayDone();
}
}
@@ -217,11 +217,11 @@ TQString SyncAction::SyncMode::name() const
if (isTest())
{
- s.append(CSL1(" [%1]").tqarg(i18n("Test Sync")));
+ s.append(CSL1(" [%1]").arg(i18n("Test Sync")));
}
if (isLocal())
{
- s.append(CSL1(" [%1]").tqarg(i18n("Local Sync")));
+ s.append(CSL1(" [%1]").arg(i18n("Local Sync")));
}
return s;
}