summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/synaescope/cmodule.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:22:56 +0000
commit7346aee26bf190a7e70333c40fab4caca847cd27 (patch)
tree4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /noatun-plugins/synaescope/cmodule.cpp
parent23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff)
downloadtdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz
tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/synaescope/cmodule.cpp')
-rw-r--r--noatun-plugins/synaescope/cmodule.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/noatun-plugins/synaescope/cmodule.cpp b/noatun-plugins/synaescope/cmodule.cpp
index 4765eef..5b881fd 100644
--- a/noatun-plugins/synaescope/cmodule.cpp
+++ b/noatun-plugins/synaescope/cmodule.cpp
@@ -22,29 +22,29 @@
#include <kglobal.h>
#include <kglobalsettings.h>
#include <klocale.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qpushbutton.h>
-#include <qspinbox.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqpushbutton.h>
+#include <tqspinbox.h>
#include "cmodule.h"
#include "synaescope.h"
-SynaePrefs::SynaePrefs(QObject *parent)
+SynaePrefs::SynaePrefs(TQObject *parent)
: CModule(i18n("Synaescope"), i18n("Noatun Visualization"), "synaescope", parent)
{
// kdDebug(66666) << k_funcinfo << endl;
- xRes = new QSpinBox(320, 1024, 16, this);
- yRes = new QSpinBox(240, 768, 12, this);
+ xRes = new TQSpinBox(320, 1024, 16, this);
+ yRes = new TQSpinBox(240, 768, 12, this);
- QVBoxLayout *layout = new QVBoxLayout(this, 0, KDialog::spacingHint());
- QHBoxLayout *xResLayout = new QHBoxLayout(0, 0, KDialog::spacingHint());
- QHBoxLayout *yResLayout = new QHBoxLayout(0, 0, KDialog::spacingHint());
+ TQVBoxLayout *layout = new TQVBoxLayout(this, 0, KDialog::spacingHint());
+ TQHBoxLayout *xResLayout = new TQHBoxLayout(0, 0, KDialog::spacingHint());
+ TQHBoxLayout *yResLayout = new TQHBoxLayout(0, 0, KDialog::spacingHint());
- xResLayout->addWidget(new QLabel(i18n("Display width:"), this));
+ xResLayout->addWidget(new TQLabel(i18n("Display width:"), this));
xResLayout->addWidget(xRes);
- yResLayout->addWidget(new QLabel(i18n("Display height:"), this));
+ yResLayout->addWidget(new TQLabel(i18n("Display height:"), this));
yResLayout->addWidget(yRes);
layout->addLayout(xResLayout);
@@ -52,8 +52,8 @@ SynaePrefs::SynaePrefs(QObject *parent)
layout->addStretch();
changed=false;
- connect(xRes, SIGNAL(valueChanged(int)), this, SLOT(slotChanges()));
- connect(yRes, SIGNAL(valueChanged(int)), this, SLOT(slotChanges()));
+ connect(xRes, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotChanges()));
+ connect(yRes, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotChanges()));
}
void SynaePrefs::save()