summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/charlatan
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/charlatan')
-rw-r--r--noatun-plugins/charlatan/configmodule.cpp4
-rw-r--r--noatun-plugins/charlatan/seeker.cpp4
-rw-r--r--noatun-plugins/charlatan/seeker.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/charlatan/configmodule.cpp b/noatun-plugins/charlatan/configmodule.cpp
index 4d8f157..0af4ddb 100644
--- a/noatun-plugins/charlatan/configmodule.cpp
+++ b/noatun-plugins/charlatan/configmodule.cpp
@@ -29,14 +29,14 @@
#include "configmodule.h"
#include "configmodule.moc"
-CharlatanConfigModule::CharlatanConfigModule(TQObject * tqparent)
+CharlatanConfigModule::CharlatanConfigModule(TQObject * parent)
:
CModule
(
i18n("Charlatan"),
i18n("Charlatan Interface Settings"),
"appearance",
- tqparent
+ parent
)
{
scroll_ = new TQCheckBox(i18n("Scroll song title"), this);
diff --git a/noatun-plugins/charlatan/seeker.cpp b/noatun-plugins/charlatan/seeker.cpp
index fc55f36..e486ad4 100644
--- a/noatun-plugins/charlatan/seeker.cpp
+++ b/noatun-plugins/charlatan/seeker.cpp
@@ -27,8 +27,8 @@
#include "seeker.h"
#include "seeker.moc"
-Seeker::Seeker(TQWidget * tqparent)
- : TQSlider(0, 60, 10, 0,Qt::Horizontal, tqparent),
+Seeker::Seeker(TQWidget * parent)
+ : TQSlider(0, 60, 10, 0,Qt::Horizontal, parent),
adjusting_(false)
{
delayedUpdateTimer_ = new TQTimer(this);
diff --git a/noatun-plugins/charlatan/seeker.h b/noatun-plugins/charlatan/seeker.h
index 98b071a..40e553e 100644
--- a/noatun-plugins/charlatan/seeker.h
+++ b/noatun-plugins/charlatan/seeker.h
@@ -34,7 +34,7 @@ class Seeker : public TQSlider
public:
- Seeker(TQWidget * tqparent);
+ Seeker(TQWidget * parent);
virtual ~Seeker();
protected slots: