From 4d75f93557ba631d97a56e288a34ca27f4507653 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 16 Dec 2011 10:00:14 -0600 Subject: Revert "Rename a number of old tq methods that are no longer tq specific" This reverts commit 6cdf35ab11c322f33feca5baf090ef56068b6049. --- kteatime/tealist.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kteatime/tealist.cpp') diff --git a/kteatime/tealist.cpp b/kteatime/tealist.cpp index ae32339..dcc4209 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").arg(time / 60)); + str.append(i18n("%1 min").tqarg(time / 60)); if (time % 60) if (str.isEmpty()) - str.append(i18n("%1 s").arg(time % 60)); + str.append(i18n("%1 s").tqarg(time % 60)); else - str.append(i18n(" %1 s").arg(time % 60)); + str.append(i18n(" %1 s").tqarg(time % 60)); return str; } -- cgit v1.2.1