summaryrefslogtreecommitdiffstats
path: root/klettres/klettres/timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'klettres/klettres/timer.cpp')
-rw-r--r--klettres/klettres/timer.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/klettres/klettres/timer.cpp b/klettres/klettres/timer.cpp
index 7ddcc20c..f102d82e 100644
--- a/klettres/klettres/timer.cpp
+++ b/klettres/klettres/timer.cpp
@@ -22,8 +22,8 @@
#include <klocale.h>
-#include <qlabel.h>
-#include <qslider.h>
+#include <tqlabel.h>
+#include <tqslider.h>
#include "timer.h"
#include "prefs.h"
@@ -32,17 +32,17 @@
Timer::Timer()
:timerdlg()
{
- timeGrownLabel->setText(QString::number(Prefs::grownTimer()) + " " + i18n("tenths of second"));
- timeKidLabel->setText(QString::number(Prefs::kidTimer()) + " " + i18n("tenths of second"));
- connect(kcfg_GrownTimer, SIGNAL(valueChanged(int)), this, SLOT(sliderValueChanged()));
- connect(kcfg_KidTimer, SIGNAL(valueChanged(int)), this, SLOT(sliderValueChanged()));
+ timeGrownLabel->setText(TQString::number(Prefs::grownTimer()) + " " + i18n("tenths of second"));
+ timeKidLabel->setText(TQString::number(Prefs::kidTimer()) + " " + i18n("tenths of second"));
+ connect(kcfg_GrownTimer, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(sliderValueChanged()));
+ connect(kcfg_KidTimer, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(sliderValueChanged()));
}
void Timer::sliderValueChanged()
{
- timeKidLabel->setText(QString::number(kcfg_KidTimer->value()) + " " + i18n("tenths of second"));
- timeGrownLabel->setText(QString::number(kcfg_GrownTimer->value()) + " " + i18n("tenths of second"));
+ timeKidLabel->setText(TQString::number(kcfg_KidTimer->value()) + " " + i18n("tenths of second"));
+ timeGrownLabel->setText(TQString::number(kcfg_GrownTimer->value()) + " " + i18n("tenths of second"));
}