diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:59:40 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:59:40 -0600 |
commit | 59a076e9336f1eebda8650437e6bc61077be1516 (patch) | |
tree | a2e4658f80b77270d84b50bd116f84eaea7efab0 /kteatime/tealist.cpp | |
parent | 3ee504ecba6caf3c2609a8648fe3659f2b541544 (diff) | |
download | tdetoys-59a076e9336f1eebda8650437e6bc61077be1516.tar.gz tdetoys-59a076e9336f1eebda8650437e6bc61077be1516.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kteatime/tealist.cpp')
-rw-r--r-- | kteatime/tealist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kteatime/tealist.cpp b/kteatime/tealist.cpp index dcc4209..ae32339 100644 --- a/kteatime/tealist.cpp +++ b/kteatime/tealist.cpp @@ -15,12 +15,12 @@ TQString int2time(int time) { TQString str; if (time / 60) - str.append(i18n("%1 min").tqarg(time / 60)); + str.append(i18n("%1 min").arg(time / 60)); if (time % 60) if (str.isEmpty()) - str.append(i18n("%1 s").tqarg(time % 60)); + str.append(i18n("%1 s").arg(time % 60)); else - str.append(i18n(" %1 s").tqarg(time % 60)); + str.append(i18n(" %1 s").arg(time % 60)); return str; } |