From b3f501d4920d589d126f1fe53cd7deb54cd8ef67 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 8 Nov 2023 11:05:40 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit 007026cdc4d51e217ce6317b87c0ff2b2d120c83) --- klaptopdaemon/profile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'klaptopdaemon/profile.cpp') 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())); -- cgit v1.2.3