summaryrefslogtreecommitdiffstats
path: root/src/knutfrontpanel.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:37:31 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-26 03:00:03 +0200
commitfb2f339e32fc4e8c4458e5423646e866ab2461b3 (patch)
tree77ddb155b0e1b4df7baaba28c7f213aaaa9fad4b /src/knutfrontpanel.cpp
parentb0cfa8840dfb80141a1b53dee96b93dd8e77de8d (diff)
downloadknutclient-fb2f339e32fc4e8c4458e5423646e866ab2461b3.tar.gz
knutclient-fb2f339e32fc4e8c4458e5423646e866ab2461b3.zip
Remove additional unneeded tq method conversions
(cherry picked from commit e1cddce9af7ab2eeaa5613e91e6899128b1ce5ab)
Diffstat (limited to 'src/knutfrontpanel.cpp')
-rwxr-xr-xsrc/knutfrontpanel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knutfrontpanel.cpp b/src/knutfrontpanel.cpp
index 5c5a1f2..c0f0c8c 100755
--- a/src/knutfrontpanel.cpp
+++ b/src/knutfrontpanel.cpp
@@ -465,7 +465,7 @@ void KNutFrontPanel::setRuntime(const int runtime) {
if (runtime != knc::numberVarError) {
int min = (int)floor(runtime/60);
int sec = runtime - (min*60);
- runtimeString=TQString("%1:%2").tqarg(min,2).tqarg(sec,2);
+ runtimeString=TQString("%1:%2").arg(min,2).arg(sec,2);
if (runtimeString[3] == ' ') runtimeString[3]='0';
}
else runtimeString="-:--";
@@ -615,7 +615,7 @@ void KNutFrontPanel::setAllPalettes (void){
m_frameOL->setPalette(m_bulbsPalette);
- // we must correct feature of KLed, KLed tqrepaint background when color of item (function KLed::setColor()) is changed only
+ // we must correct feature of KLed, KLed repaint background when color of item (function KLed::setColor()) is changed only
// when we change palette backround only, KLed ignore this change
myColor = m_frameOL->color();