summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/charlatan/configmodule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/charlatan/configmodule.cpp')
-rw-r--r--noatun-plugins/charlatan/configmodule.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/charlatan/configmodule.cpp b/noatun-plugins/charlatan/configmodule.cpp
index 3624e0b..4d8f157 100644
--- a/noatun-plugins/charlatan/configmodule.cpp
+++ b/noatun-plugins/charlatan/configmodule.cpp
@@ -29,23 +29,23 @@
#include "configmodule.h"
#include "configmodule.moc"
-CharlatanConfigModule::CharlatanConfigModule(TQObject * parent)
+CharlatanConfigModule::CharlatanConfigModule(TQObject * tqparent)
:
CModule
(
i18n("Charlatan"),
i18n("Charlatan Interface Settings"),
"appearance",
- parent
+ tqparent
)
{
scroll_ = new TQCheckBox(i18n("Scroll song title"), this);
- TQVBoxLayout * layout = new TQVBoxLayout(this);
+ TQVBoxLayout * tqlayout = new TQVBoxLayout(this);
- layout->addWidget(scroll_);
+ tqlayout->addWidget(scroll_);
- layout->addStretch(100);
+ tqlayout->addStretch(100);
reopen();
}