summaryrefslogtreecommitdiffstats
path: root/kcontrol/kicker/menuconfig.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/kicker/menuconfig.cpp
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-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/menuconfig.cpp')
-rw-r--r--kcontrol/kicker/menuconfig.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kcontrol/kicker/menuconfig.cpp b/kcontrol/kicker/menuconfig.cpp
index 5bc1964b1..03ca57582 100644
--- a/kcontrol/kicker/menuconfig.cpp
+++ b/kcontrol/kicker/menuconfig.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 "menuconfig.h"
#include "menuconfig.moc"
-MenuConfig::MenuConfig(QWidget *parent, const char *name)
+MenuConfig::MenuConfig(TQWidget *parent, const char *name)
: KCModule(parent, name)
{
- QVBoxLayout *layout = new QVBoxLayout(this);
+ TQVBoxLayout *layout = new TQVBoxLayout(this);
m_widget = new MenuTab(this);
layout->addWidget(m_widget);
layout->addStretch();
@@ -41,13 +41,13 @@ MenuConfig::MenuConfig(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 MenuConfig::notChanged()
@@ -90,5 +90,5 @@ void MenuConfig::defaults()
// KConfigDialogManager may queue an changed(false) signal,
// so we make sure, that the module is labeled as changedm,
// while we manage some of the widgets ourselves
- QTimer::singleShot(0, this, SLOT(changed()));
+ TQTimer::singleShot(0, this, TQT_SLOT(changed()));
}