summaryrefslogtreecommitdiffstats
path: root/klaptopdaemon/profile.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-08 11:05:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-08 18:03:11 +0900
commitb3f501d4920d589d126f1fe53cd7deb54cd8ef67 (patch)
tree2ce455340d62bb00f7775524d9acd4aa1f8d2d38 /klaptopdaemon/profile.cpp
parentc28e0608a97f46e79194eed488c3430b4e6efb57 (diff)
downloadtdeutils-b3f501d4920d589d126f1fe53cd7deb54cd8ef67.tar.gz
tdeutils-b3f501d4920d589d126f1fe53cd7deb54cd8ef67.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 007026cdc4d51e217ce6317b87c0ff2b2d120c83)
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()));