summaryrefslogtreecommitdiffstats
path: root/kcontrol/kicker/positionconfig.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/positionconfig.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/positionconfig.cpp')
-rw-r--r--kcontrol/kicker/positionconfig.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kcontrol/kicker/positionconfig.cpp b/kcontrol/kicker/positionconfig.cpp
index 86a94ed21..6e5dcdeb2 100644
--- a/kcontrol/kicker/positionconfig.cpp
+++ b/kcontrol/kicker/positionconfig.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 "positionconfig.h"
#include "positionconfig.moc"
-PositionConfig::PositionConfig(QWidget *parent, const char *name)
+PositionConfig::PositionConfig(TQWidget *parent, const char *name)
: KCModule(parent, name)
{
- QVBoxLayout *layout = new QVBoxLayout(this);
+ TQVBoxLayout *layout = new TQVBoxLayout(this);
m_widget = new PositionTab(this);
layout->addWidget(m_widget);
layout->addStretch();
@@ -41,13 +41,13 @@ PositionConfig::PositionConfig(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 PositionConfig::notChanged()
@@ -90,5 +90,5 @@ void PositionConfig::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()));
}