summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/alsaplayer
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/alsaplayer')
-rw-r--r--noatun-plugins/alsaplayer/configmodule.cpp4
-rw-r--r--noatun-plugins/alsaplayer/seeker.cpp4
-rw-r--r--noatun-plugins/alsaplayer/seeker.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/alsaplayer/configmodule.cpp b/noatun-plugins/alsaplayer/configmodule.cpp
index 339b484..0c98af7 100644
--- a/noatun-plugins/alsaplayer/configmodule.cpp
+++ b/noatun-plugins/alsaplayer/configmodule.cpp
@@ -29,14 +29,14 @@
#include "configmodule.h"
-AlsaPlayerConfigModule::AlsaPlayerConfigModule(TQObject * tqparent)
+AlsaPlayerConfigModule::AlsaPlayerConfigModule(TQObject * parent)
:
CModule
(
i18n("AlsaPlayer"),
i18n("AlsaPlayer Interface Settings"),
"appearance",
- tqparent
+ parent
)
{
scroll_ = new TQCheckBox(i18n("Scroll song title"), this);
diff --git a/noatun-plugins/alsaplayer/seeker.cpp b/noatun-plugins/alsaplayer/seeker.cpp
index e3c12c1..282f50d 100644
--- a/noatun-plugins/alsaplayer/seeker.cpp
+++ b/noatun-plugins/alsaplayer/seeker.cpp
@@ -26,8 +26,8 @@
#include <noatun/player.h>
#include "seeker.h"
-Seeker::Seeker(TQWidget * tqparent, const char * name)
- : L33tSlider(0, 1000, 10, 0,Qt::Horizontal, tqparent, name)
+Seeker::Seeker(TQWidget * parent, const char * name)
+ : L33tSlider(0, 1000, 10, 0,Qt::Horizontal, parent, name)
{
connect(this, TQT_SIGNAL(userChanged(int)), TQT_SLOT(slotValueChanged(int)));
diff --git a/noatun-plugins/alsaplayer/seeker.h b/noatun-plugins/alsaplayer/seeker.h
index 9eb67ed..833250d 100644
--- a/noatun-plugins/alsaplayer/seeker.h
+++ b/noatun-plugins/alsaplayer/seeker.h
@@ -32,7 +32,7 @@ class Seeker : public L33tSlider
public:
- Seeker(TQWidget * tqparent, const char * name = 0);
+ Seeker(TQWidget * parent, const char * name = 0);
virtual ~Seeker();
protected slots: