diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:36:42 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:36:42 -0600 |
commit | 5599badf00624db6b9cecd7a00971f8c2387b73c (patch) | |
tree | de8cc75606ca033f72702957c794cecd5544eea7 /src/sources/uptimesrc.cpp | |
parent | fc6629f90a46a3f304bdba2ecef645c01ed02640 (diff) | |
download | kima-5599badf00624db6b9cecd7a00971f8c2387b73c.tar.gz kima-5599badf00624db6b9cecd7a00971f8c2387b73c.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/sources/uptimesrc.cpp')
-rw-r--r-- | src/sources/uptimesrc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sources/uptimesrc.cpp b/src/sources/uptimesrc.cpp index cc9d0b5..2daca75 100644 --- a/src/sources/uptimesrc.cpp +++ b/src/sources/uptimesrc.cpp @@ -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.tqarg(days).tqarg(hours).tqarg(minutes); + s = mTimeFormatLong.arg(days).arg(hours).arg(minutes); else - s = mTimeFormatShort.tqarg(hours).tqarg(minutes); + s = mTimeFormatShort.arg(hours).arg(minutes); mSourceFile.close(); } return s; |