diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/kicker/lookandfeelconfig.cpp | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/kicker/lookandfeelconfig.cpp')
-rw-r--r-- | kcontrol/kicker/lookandfeelconfig.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kcontrol/kicker/lookandfeelconfig.cpp b/kcontrol/kicker/lookandfeelconfig.cpp index 7f43f2c05..7475ad7b0 100644 --- a/kcontrol/kicker/lookandfeelconfig.cpp +++ b/kcontrol/kicker/lookandfeelconfig.cpp @@ -15,8 +15,8 @@ * along with this program; if not, write to the Free Software */ -#include <qlayout.h> -#include <qtimer.h> +#include <tqlayout.h> +#include <tqtimer.h> #include <klocale.h> #include <kdebug.h> @@ -28,10 +28,10 @@ #include "lookandfeelconfig.h" #include "lookandfeelconfig.moc" -LookAndFeelConfig::LookAndFeelConfig(QWidget *parent, const char *name) +LookAndFeelConfig::LookAndFeelConfig(TQWidget *parent, const char *name) : KCModule(parent, name) { - QVBoxLayout *layout = new QVBoxLayout(this); + TQVBoxLayout *layout = new TQVBoxLayout(this); m_widget = new LookAndFeelTab(this); layout->addWidget(m_widget); layout->addStretch(); @@ -41,13 +41,13 @@ LookAndFeelConfig::LookAndFeelConfig(QWidget *parent, const char *name) addConfig(KickerSettings::self(), m_widget); - connect(m_widget, SIGNAL(changed()), - this, SLOT(changed())); - connect(KickerConfig::the(), SIGNAL(aboutToNotifyKicker()), - this, SLOT(aboutToNotifyKicker())); + connect(m_widget, TQT_SIGNAL(changed()), + this, TQT_SLOT(changed())); + connect(KickerConfig::the(), TQT_SIGNAL(aboutToNotifyKicker()), + this, TQT_SLOT(aboutToNotifyKicker())); load(); - QTimer::singleShot(0, this, SLOT(notChanged())); + TQTimer::singleShot(0, this, TQT_SLOT(notChanged())); } void LookAndFeelConfig::notChanged() @@ -90,5 +90,5 @@ void LookAndFeelConfig::defaults() // KConfigDialogManager may queue an changed(false) signal, // so we make sure, that the module is labeled as changed, // while we manage some of the widgets ourselves - QTimer::singleShot(0, this, SLOT(changed())); + TQTimer::singleShot(0, this, TQT_SLOT(changed())); } |