summaryrefslogtreecommitdiffstats
path: root/src/countdowndialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:11 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:11 -0600
commitc36a2855c42ea04c7c1965228507e874426fd7e6 (patch)
tree33edee1823c5fbe6c7dac74562bf10a572606324 /src/countdowndialog.cpp
parenta6a8ad44b48bdfff1a1a3123097a84f23105f64b (diff)
downloadtdepowersave-c36a2855c42ea04c7c1965228507e874426fd7e6.tar.gz
tdepowersave-c36a2855c42ea04c7c1965228507e874426fd7e6.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/countdowndialog.cpp')
-rw-r--r--src/countdowndialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/countdowndialog.cpp b/src/countdowndialog.cpp
index 6abaf90..f8d268d 100644
--- a/src/countdowndialog.cpp
+++ b/src/countdowndialog.cpp
@@ -114,7 +114,7 @@ bool countDownDialog::showDialog() {
if (!textLabel->text().isEmpty() && timeOut > 0) {
// init the progressbar
- progressBar->setFormat(i18n("%1 seconds").tqarg(remaining));
+ progressBar->setFormat(i18n("%1 seconds").arg(remaining));
progressBar->setPercentageVisible(true);
progressBar->setProgress(100);
progressBar->setEnabled(true);
@@ -160,7 +160,7 @@ void countDownDialog::updateProgress() {
int setTo = (int)((100.0/(float)timeOut)*(float)remaining);
// set the progressBar
- progressBar->setFormat(i18n("%1 seconds").tqarg(remaining));
+ progressBar->setFormat(i18n("%1 seconds").arg(remaining));
progressBar->setPercentageVisible(true);
progressBar->setProgress(setTo);
progressBar->setEnabled(true);