summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/charlatan
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/charlatan
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/charlatan')
-rw-r--r--noatun-plugins/charlatan/configmodule.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/noatun-plugins/charlatan/configmodule.cpp b/noatun-plugins/charlatan/configmodule.cpp
index 0af4ddb..3624e0b 100644
--- a/noatun-plugins/charlatan/configmodule.cpp
+++ b/noatun-plugins/charlatan/configmodule.cpp
@@ -41,11 +41,11 @@ CharlatanConfigModule::CharlatanConfigModule(TQObject * parent)
{
scroll_ = new TQCheckBox(i18n("Scroll song title"), this);
- TQVBoxLayout * tqlayout = new TQVBoxLayout(this);
+ TQVBoxLayout * layout = new TQVBoxLayout(this);
- tqlayout->addWidget(scroll_);
+ layout->addWidget(scroll_);
- tqlayout->addStretch(100);
+ layout->addStretch(100);
reopen();
}