diff options
Diffstat (limited to 'noatun-plugins/synaescope/cmodule.cpp')
-rw-r--r-- | noatun-plugins/synaescope/cmodule.cpp | 28 |
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() |