summaryrefslogtreecommitdiffstats
path: root/kpilot/logFile.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 /kpilot/logFile.cc
parente2574db445c23b812a26740475cbacbbd964639b (diff)
downloadkpilot-46d967c53bb9221c29b1d357086d600a01a97706.tar.gz
kpilot-46d967c53bb9221c29b1d357086d600a01a97706.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kpilot/logFile.cc')
-rw-r--r--kpilot/logFile.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/kpilot/logFile.cc b/kpilot/logFile.cc
index f066e7c..3548bcb 100644
--- a/kpilot/logFile.cc
+++ b/kpilot/logFile.cc
@@ -70,21 +70,21 @@ LogFile::LogFile() : DCOPObject("LogIface"), TQObject(), fOutfile(0L), fSyncing(
fSyncing = true;
fLogStream.setDevice(TQT_TQIODEVICE(fOutfile));
- fLogStream<<(CSL1("KPilot HotSync log, %1").tqarg(TQDateTime::currentDateTime().toString()))<<endl<<endl<<endl;
- fLogStream<<(CSL1("Version: KPilot %1").tqarg(TQString::fromLatin1(KPILOT_VERSION)))<<endl;
+ fLogStream<<(CSL1("KPilot HotSync log, %1").arg(TQDateTime::currentDateTime().toString()))<<endl<<endl<<endl;
+ fLogStream<<(CSL1("Version: KPilot %1").arg(TQString::fromLatin1(KPILOT_VERSION)))<<endl;
fLogStream<<(CSL1("Version: pilot-link %1.%2.%3%4" )
- .tqarg(PILOT_LINK_VERSION).tqarg(PILOT_LINK_MAJOR).tqarg(PILOT_LINK_MINOR)
+ .arg(PILOT_LINK_VERSION).arg(PILOT_LINK_MAJOR).arg(PILOT_LINK_MINOR)
#ifdef PILOT_LINK_PATCH
- .tqarg(TQString::fromLatin1(PILOT_LINK_PATCH))
+ .arg(TQString::fromLatin1(PILOT_LINK_PATCH))
#else
- .tqarg(TQString())
+ .arg(TQString())
#endif
)<<endl;
#ifdef TDE_VERSION_STRING
- fLogStream<<(CSL1("Version: KDE %1" ).tqarg(TQString::fromLatin1(TDE_VERSION_STRING)) )<<endl;
+ fLogStream<<(CSL1("Version: KDE %1" ).arg(TQString::fromLatin1(TDE_VERSION_STRING)) )<<endl;
#endif
#ifdef TQT_VERSION_STR
- fLogStream<<(CSL1("Version: TQt %1" ).tqarg(TQString::fromLatin1(TQT_VERSION_STR)) )<<endl;
+ fLogStream<<(CSL1("Version: TQt %1" ).arg(TQString::fromLatin1(TQT_VERSION_STR)) )<<endl;
#endif
fLogStream<<endl<<endl;