summaryrefslogtreecommitdiffstats
path: root/src/sources/uptimesrc.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:36:42 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:36:42 -0600
commit5599badf00624db6b9cecd7a00971f8c2387b73c (patch)
treede8cc75606ca033f72702957c794cecd5544eea7 /src/sources/uptimesrc.cpp
parentfc6629f90a46a3f304bdba2ecef645c01ed02640 (diff)
downloadkima-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.cpp4
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;