summaryrefslogtreecommitdiffstats
path: root/kicker-applets
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:05:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:05:43 -0600
commit28166400a4ac95793e5adb51721722e8656ebe4a (patch)
tree335bf692046a5d4cc10b2dc3f8beaa350c9607cb /kicker-applets
parent2e53a31f139e370203f5a947a44d8daa8addcbe9 (diff)
downloadtdeaddons-28166400a4ac95793e5adb51721722e8656ebe4a.tar.gz
tdeaddons-28166400a4ac95793e5adb51721722e8656ebe4a.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kicker-applets')
-rw-r--r--kicker-applets/kbinaryclock/kbinaryclock.h4
-rw-r--r--kicker-applets/kolourpicker/kolourpicker.h2
-rw-r--r--kicker-applets/kolourpicker/simplebutton.h4
-rw-r--r--kicker-applets/ktimemon/confdlg.h2
-rw-r--r--kicker-applets/ktimemon/timemon.h2
-rw-r--r--kicker-applets/math/mathapplet.h2
-rw-r--r--kicker-applets/mediacontrol/amarokInterface.h2
-rw-r--r--kicker-applets/mediacontrol/configfrontend.h2
-rw-r--r--kicker-applets/mediacontrol/jukInterface.h2
-rw-r--r--kicker-applets/mediacontrol/kscdInterface.h2
-rw-r--r--kicker-applets/mediacontrol/mcslider.h2
-rw-r--r--kicker-applets/mediacontrol/mediacontrol.h4
-rw-r--r--kicker-applets/mediacontrol/mediacontrolconfig.h2
-rw-r--r--kicker-applets/mediacontrol/mpdInterface.h2
-rw-r--r--kicker-applets/mediacontrol/noatunInterface.h2
-rw-r--r--kicker-applets/mediacontrol/playerInterface.h2
-rw-r--r--kicker-applets/mediacontrol/simplebutton.h4
-rw-r--r--kicker-applets/mediacontrol/xmmsInterface.h2
18 files changed, 22 insertions, 22 deletions
diff --git a/kicker-applets/kbinaryclock/kbinaryclock.h b/kicker-applets/kbinaryclock/kbinaryclock.h
index 1aae352..e5e28aa 100644
--- a/kicker-applets/kbinaryclock/kbinaryclock.h
+++ b/kicker-applets/kbinaryclock/kbinaryclock.h
@@ -38,7 +38,7 @@ class KBinaryClock;
class SettingsImp : public Settings {
Q_OBJECT
- TQ_OBJECT
+
public:
SettingsImp(TQWidget* parent=0,
const char* name=0,
@@ -72,7 +72,7 @@ class ClockAppletToolTip : public TQToolTip
class KBinaryClock : public KPanelApplet {
Q_OBJECT
- TQ_OBJECT
+
public:
KBinaryClock(const TQString& configFile, Type t = Normal, int actions = 0, TQWidget *parent = 0, const char *name = 0);
~KBinaryClock();
diff --git a/kicker-applets/kolourpicker/kolourpicker.h b/kicker-applets/kolourpicker/kolourpicker.h
index c9870e2..09bbdc5 100644
--- a/kicker-applets/kolourpicker/kolourpicker.h
+++ b/kicker-applets/kolourpicker/kolourpicker.h
@@ -34,7 +34,7 @@ class TQPopupMenu;
class KolourPicker : public KPanelApplet
{
Q_OBJECT
- TQ_OBJECT
+
public:
KolourPicker(const TQString& configFile, Type t = Normal, int actions = 0,
TQWidget *parent = 0, const char *name = 0);
diff --git a/kicker-applets/kolourpicker/simplebutton.h b/kicker-applets/kolourpicker/simplebutton.h
index 9c66f85..8a0cb89 100644
--- a/kicker-applets/kolourpicker/simplebutton.h
+++ b/kicker-applets/kolourpicker/simplebutton.h
@@ -29,7 +29,7 @@
class KDE_EXPORT SimpleButton : public TQButton
{
Q_OBJECT
- TQ_OBJECT
+
public:
SimpleButton(TQWidget *parent, const char *name = 0);
@@ -64,7 +64,7 @@ class KDE_EXPORT SimpleButton : public TQButton
class KDE_EXPORT SimpleArrowButton: public SimpleButton
{
Q_OBJECT
- TQ_OBJECT
+
public:
SimpleArrowButton(TQWidget *parent = 0, TQt::ArrowType arrow = TQt::UpArrow, const char *name = 0);
diff --git a/kicker-applets/ktimemon/confdlg.h b/kicker-applets/ktimemon/confdlg.h
index d7451f3..01b5fed 100644
--- a/kicker-applets/ktimemon/confdlg.h
+++ b/kicker-applets/ktimemon/confdlg.h
@@ -48,7 +48,7 @@ class KConfDialog : public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
KConfDialog(KTimeMon *timemon);
diff --git a/kicker-applets/ktimemon/timemon.h b/kicker-applets/ktimemon/timemon.h
index 7e023c5..4268c06 100644
--- a/kicker-applets/ktimemon/timemon.h
+++ b/kicker-applets/ktimemon/timemon.h
@@ -46,7 +46,7 @@ class KPopupMenu;
class KTimeMon : public KPanelApplet, TQToolTip {
Q_OBJECT
- TQ_OBJECT
+
public:
enum MouseAction { NOTHING, SWITCH, MENU, COMMAND };
diff --git a/kicker-applets/math/mathapplet.h b/kicker-applets/math/mathapplet.h
index e7e4235..dad1e8c 100644
--- a/kicker-applets/math/mathapplet.h
+++ b/kicker-applets/math/mathapplet.h
@@ -38,7 +38,7 @@ class KPopupMenu;
class MathApplet : public KPanelApplet
{
Q_OBJECT
- TQ_OBJECT
+
public:
MathApplet(const TQString& configFile, Type t = Stretch, int actions = 0,
diff --git a/kicker-applets/mediacontrol/amarokInterface.h b/kicker-applets/mediacontrol/amarokInterface.h
index 5e8c689..251962c 100644
--- a/kicker-applets/mediacontrol/amarokInterface.h
+++ b/kicker-applets/mediacontrol/amarokInterface.h
@@ -29,7 +29,7 @@
class AmarokInterface : public PlayerInterface
{
Q_OBJECT
- TQ_OBJECT
+
public:
AmarokInterface();
~AmarokInterface();
diff --git a/kicker-applets/mediacontrol/configfrontend.h b/kicker-applets/mediacontrol/configfrontend.h
index fc5f346..9a4727f 100644
--- a/kicker-applets/mediacontrol/configfrontend.h
+++ b/kicker-applets/mediacontrol/configfrontend.h
@@ -27,7 +27,7 @@
class ConfigFrontend : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
ConfigFrontend();
ConfigFrontend(KConfig *);
diff --git a/kicker-applets/mediacontrol/jukInterface.h b/kicker-applets/mediacontrol/jukInterface.h
index 51bd6de..41b6542 100644
--- a/kicker-applets/mediacontrol/jukInterface.h
+++ b/kicker-applets/mediacontrol/jukInterface.h
@@ -30,7 +30,7 @@ class TQProcess;
class JuKInterface : public PlayerInterface
{
Q_OBJECT
- TQ_OBJECT
+
public:
JuKInterface();
~JuKInterface();
diff --git a/kicker-applets/mediacontrol/kscdInterface.h b/kicker-applets/mediacontrol/kscdInterface.h
index 2448080..f4fe279 100644
--- a/kicker-applets/mediacontrol/kscdInterface.h
+++ b/kicker-applets/mediacontrol/kscdInterface.h
@@ -29,7 +29,7 @@
class KsCDInterface : public PlayerInterface
{
Q_OBJECT
- TQ_OBJECT
+
public:
KsCDInterface();
~KsCDInterface();
diff --git a/kicker-applets/mediacontrol/mcslider.h b/kicker-applets/mediacontrol/mcslider.h
index 1d81b82..427bb94 100644
--- a/kicker-applets/mediacontrol/mcslider.h
+++ b/kicker-applets/mediacontrol/mcslider.h
@@ -23,7 +23,7 @@
class MCSlider : public TQSlider
{
Q_OBJECT
- TQ_OBJECT
+
public:
MCSlider( Qt::Orientation orientation, TQWidget *parent, const char *name = 0 );
diff --git a/kicker-applets/mediacontrol/mediacontrol.h b/kicker-applets/mediacontrol/mediacontrol.h
index 15315c6..4c98787 100644
--- a/kicker-applets/mediacontrol/mediacontrol.h
+++ b/kicker-applets/mediacontrol/mediacontrol.h
@@ -53,7 +53,7 @@ class MediaControlToolTip;
class TrayButton : public SimpleButton
{
Q_OBJECT
- TQ_OBJECT
+
public:
TrayButton(TQWidget* parent, const char* name);
@@ -66,7 +66,7 @@ class TrayButton : public SimpleButton
class MediaControl : public KPanelApplet, virtual public MediaControlIface
{
Q_OBJECT
- TQ_OBJECT
+
public:
MediaControl(const TQString&, Type, int ,TQWidget * = 0, const char * = 0);
diff --git a/kicker-applets/mediacontrol/mediacontrolconfig.h b/kicker-applets/mediacontrol/mediacontrolconfig.h
index 5ce463a..aad3c61 100644
--- a/kicker-applets/mediacontrol/mediacontrolconfig.h
+++ b/kicker-applets/mediacontrol/mediacontrolconfig.h
@@ -28,7 +28,7 @@ class KConfig;
class MediaControlConfig: public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
MediaControlConfig(ConfigFrontend *cfg, TQWidget *parent = 0, const char* name = "MediaControlConfig");
diff --git a/kicker-applets/mediacontrol/mpdInterface.h b/kicker-applets/mediacontrol/mpdInterface.h
index 4ba2034..5e1a0bd 100644
--- a/kicker-applets/mediacontrol/mpdInterface.h
+++ b/kicker-applets/mediacontrol/mpdInterface.h
@@ -32,7 +32,7 @@ class MpdInterface
: public PlayerInterface
{
Q_OBJECT
- TQ_OBJECT
+
public:
MpdInterface();
~MpdInterface();
diff --git a/kicker-applets/mediacontrol/noatunInterface.h b/kicker-applets/mediacontrol/noatunInterface.h
index 0349458..2fb3efe 100644
--- a/kicker-applets/mediacontrol/noatunInterface.h
+++ b/kicker-applets/mediacontrol/noatunInterface.h
@@ -28,7 +28,7 @@
class NoatunInterface : public PlayerInterface
{
Q_OBJECT
- TQ_OBJECT
+
public:
NoatunInterface();
~NoatunInterface();
diff --git a/kicker-applets/mediacontrol/playerInterface.h b/kicker-applets/mediacontrol/playerInterface.h
index 1225290..9fa6c2c 100644
--- a/kicker-applets/mediacontrol/playerInterface.h
+++ b/kicker-applets/mediacontrol/playerInterface.h
@@ -24,7 +24,7 @@
class PlayerInterface : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
PlayerInterface();
virtual ~PlayerInterface();
diff --git a/kicker-applets/mediacontrol/simplebutton.h b/kicker-applets/mediacontrol/simplebutton.h
index 9c66f85..8a0cb89 100644
--- a/kicker-applets/mediacontrol/simplebutton.h
+++ b/kicker-applets/mediacontrol/simplebutton.h
@@ -29,7 +29,7 @@
class KDE_EXPORT SimpleButton : public TQButton
{
Q_OBJECT
- TQ_OBJECT
+
public:
SimpleButton(TQWidget *parent, const char *name = 0);
@@ -64,7 +64,7 @@ class KDE_EXPORT SimpleButton : public TQButton
class KDE_EXPORT SimpleArrowButton: public SimpleButton
{
Q_OBJECT
- TQ_OBJECT
+
public:
SimpleArrowButton(TQWidget *parent = 0, TQt::ArrowType arrow = TQt::UpArrow, const char *name = 0);
diff --git a/kicker-applets/mediacontrol/xmmsInterface.h b/kicker-applets/mediacontrol/xmmsInterface.h
index d67f8df..9a0c236 100644
--- a/kicker-applets/mediacontrol/xmmsInterface.h
+++ b/kicker-applets/mediacontrol/xmmsInterface.h
@@ -30,7 +30,7 @@
class XmmsInterface : public PlayerInterface
{
Q_OBJECT
- TQ_OBJECT
+
public:
XmmsInterface();
~XmmsInterface();