summaryrefslogtreecommitdiffstats
path: root/klaptopdaemon/profile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'klaptopdaemon/profile.cpp')
-rw-r--r--klaptopdaemon/profile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/klaptopdaemon/profile.cpp b/klaptopdaemon/profile.cpp
index e60109e..492b136 100644
--- a/klaptopdaemon/profile.cpp
+++ b/klaptopdaemon/profile.cpp
@@ -84,7 +84,7 @@ ProfileConfig::ProfileConfig(TQWidget * parent, const char *name)
connect (poff, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(poff_changed(bool)));
xl->addWidget(new TQLabel("-", wp));
- soff = new TQSlider(0, 255, 16, 160, Qt::Horizontal, wp);
+ soff = new TQSlider(0, 255, 16, 160, TQt::Horizontal, wp);
soff->setEnabled(0);
TQToolTip::add( soff, i18n( "How bright it should be when it is changed" ) );
connect (soff, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(configChanged()));
@@ -148,7 +148,7 @@ ProfileConfig::ProfileConfig(TQWidget * parent, const char *name)
connect (pon, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(pon_changed(bool)));
xl->addWidget(new TQLabel("-", wp));
- son = new TQSlider(0, 255, 16, 255, Qt::Horizontal, wp);
+ son = new TQSlider(0, 255, 16, 255, TQt::Horizontal, wp);
son->setEnabled(0);
TQToolTip::add( son, i18n( "How bright it should be when it is changed" ) );
connect (son, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(configChanged()));