summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/synaescope
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:17:23 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-04 03:25:50 +0200
commit75e37fa7ac968680c553ae1d8a175527a731a3aa (patch)
tree814b5f558f75806a2a922cb31f13e0d4b7b4e3c3 /noatun-plugins/synaescope
parent19e67aed27e50319d00a06ae6287236db13f82f4 (diff)
downloadtdeaddons-75e37fa7ac968680c553ae1d8a175527a731a3aa.tar.gz
tdeaddons-75e37fa7ac968680c553ae1d8a175527a731a3aa.zip
Rename obsolete tq methods to standard names
(cherry picked from commit ff5b07d9659291ac8172cd35f0821bcd30ce25c9)
Diffstat (limited to 'noatun-plugins/synaescope')
-rw-r--r--noatun-plugins/synaescope/cmodule.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun-plugins/synaescope/cmodule.cpp b/noatun-plugins/synaescope/cmodule.cpp
index e6c2930..5b881fd 100644
--- a/noatun-plugins/synaescope/cmodule.cpp
+++ b/noatun-plugins/synaescope/cmodule.cpp
@@ -37,7 +37,7 @@ SynaePrefs::SynaePrefs(TQObject *parent)
xRes = new TQSpinBox(320, 1024, 16, this);
yRes = new TQSpinBox(240, 768, 12, this);
- TQVBoxLayout *tqlayout = new TQVBoxLayout(this, 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());
@@ -47,9 +47,9 @@ SynaePrefs::SynaePrefs(TQObject *parent)
yResLayout->addWidget(new TQLabel(i18n("Display height:"), this));
yResLayout->addWidget(yRes);
- tqlayout->addLayout(xResLayout);
- tqlayout->addLayout(yResLayout);
- tqlayout->addStretch();
+ layout->addLayout(xResLayout);
+ layout->addLayout(yResLayout);
+ layout->addStretch();
changed=false;
connect(xRes, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotChanges()));