From 0b46312b4c5d893a6e0c29e354038bbdc5a15fdd Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 16 Dec 2011 09:56:11 -0600 Subject: Revert "Rename a number of old tq methods that are no longer tq specific" This reverts commit 6981c239dedc72969f6f539afeef646a19c867c0. --- src/sources/uptimesrc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/sources/uptimesrc.cpp') diff --git a/src/sources/uptimesrc.cpp b/src/sources/uptimesrc.cpp index a43ce92..cc9d0b5 100644 --- a/src/sources/uptimesrc.cpp +++ b/src/sources/uptimesrc.cpp @@ -19,7 +19,7 @@ ***************************************************************************/ #include "uptimesrc.h" -#include +#include #include UptimeSrc::UptimeSrc(TQWidget* inParent, const TQFile& inSourceFile): @@ -55,9 +55,9 @@ TQString UptimeSrc::fetchValue(){ TQString hours = TQString::number(secs / 3600 % 24).rightJustify(2, '0'); TQString days = TQString::number(secs / 86400); if(days != "0") - s = mTimeFormatLong.arg(days).arg(hours).arg(minutes); + s = mTimeFormatLong.tqarg(days).tqarg(hours).tqarg(minutes); else - s = mTimeFormatShort.arg(hours).arg(minutes); + s = mTimeFormatShort.tqarg(hours).tqarg(minutes); mSourceFile.close(); } return s; -- cgit v1.2.3