summaryrefslogtreecommitdiffstats
path: root/noatun/library
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library')
-rw-r--r--noatun/library/cmodule.h2
-rw-r--r--noatun/library/effectview.h4
-rw-r--r--noatun/library/equalizerview.h6
-rw-r--r--noatun/library/globalvideo.h2
-rw-r--r--noatun/library/mimetypetree.h2
-rw-r--r--noatun/library/noatun/app.h2
-rw-r--r--noatun/library/noatun/controls.h4
-rw-r--r--noatun/library/noatun/downloader.h2
-rw-r--r--noatun/library/noatun/effects.h2
-rw-r--r--noatun/library/noatun/engine.h2
-rw-r--r--noatun/library/noatun/equalizer.h2
-rw-r--r--noatun/library/noatun/player.h2
-rw-r--r--noatun/library/noatun/playlist.h2
-rw-r--r--noatun/library/noatun/plugin.h4
-rw-r--r--noatun/library/noatun/pref.h4
-rw-r--r--noatun/library/noatun/scrollinglabel.h2
-rw-r--r--noatun/library/noatun/stdaction.h10
-rw-r--r--noatun/library/noatun/stereobuttonaction.h2
-rw-r--r--noatun/library/noatun/vequalizer.h4
-rw-r--r--noatun/library/noatun/video.h2
-rw-r--r--noatun/library/noatuntags/tagsgetter.h4
-rw-r--r--noatun/library/plugin_deps.h2
-rw-r--r--noatun/library/pluginmodule.h4
-rw-r--r--noatun/library/titleproxy.h4
24 files changed, 38 insertions, 38 deletions
diff --git a/noatun/library/cmodule.h b/noatun/library/cmodule.h
index 54fbc19e..ac287a13 100644
--- a/noatun/library/cmodule.h
+++ b/noatun/library/cmodule.h
@@ -21,7 +21,7 @@ class KURLRequester;
class General : public CModule
{
-Q_OBJECT
+TQ_OBJECT
public:
General(TQObject *parent=0);
diff --git a/noatun/library/effectview.h b/noatun/library/effectview.h
index 3434ae92..bdde7eac 100644
--- a/noatun/library/effectview.h
+++ b/noatun/library/effectview.h
@@ -35,7 +35,7 @@ class TQToolButton;
class EffectView : public KDialogBase
{
-Q_OBJECT
+TQ_OBJECT
public:
EffectView();
@@ -74,7 +74,7 @@ private:
class EffectList : public TDEListView
{
-Q_OBJECT
+TQ_OBJECT
public:
EffectList(TQWidget *parent);
diff --git a/noatun/library/equalizerview.h b/noatun/library/equalizerview.h
index 0cec05a9..d8293a3a 100644
--- a/noatun/library/equalizerview.h
+++ b/noatun/library/equalizerview.h
@@ -16,7 +16,7 @@ class EqualizerWidget;
class EqualizerLevel : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
public:
EqualizerLevel(TQWidget *parent, VBand band);
@@ -36,7 +36,7 @@ private:
class PresetList : public TDEListView
{
-Q_OBJECT
+TQ_OBJECT
public:
PresetList(TQWidget *parent, const char *name=0);
@@ -48,7 +48,7 @@ public:
class EqualizerView : public KDialogBase
{
-Q_OBJECT
+TQ_OBJECT
TQPtrList<EqualizerLevel> mBands;
diff --git a/noatun/library/globalvideo.h b/noatun/library/globalvideo.h
index 9414ca33..89522489 100644
--- a/noatun/library/globalvideo.h
+++ b/noatun/library/globalvideo.h
@@ -6,7 +6,7 @@
class GlobalVideo : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
TQPopupMenu *menu;
VideoFrame *video;
diff --git a/noatun/library/mimetypetree.h b/noatun/library/mimetypetree.h
index c6619293..ea85810f 100644
--- a/noatun/library/mimetypetree.h
+++ b/noatun/library/mimetypetree.h
@@ -18,7 +18,7 @@
class MimeTypeTree : public TDEListView
{
-Q_OBJECT
+TQ_OBJECT
public:
MimeTypeTree(TQWidget *parent);
diff --git a/noatun/library/noatun/app.h b/noatun/library/noatun/app.h
index 49ea0064..f8927376 100644
--- a/noatun/library/noatun/app.h
+++ b/noatun/library/noatun/app.h
@@ -30,7 +30,7 @@ namespace NoatunStdAction
*/
class KDE_EXPORT NoatunApp : public KUniqueApplication
{
-Q_OBJECT
+TQ_OBJECT
friend class Playlist;
diff --git a/noatun/library/noatun/controls.h b/noatun/library/noatun/controls.h
index 37617183..693b3fdc 100644
--- a/noatun/library/noatun/controls.h
+++ b/noatun/library/noatun/controls.h
@@ -22,7 +22,7 @@ class TQLabel;
**/
class KDE_EXPORT L33tSlider : public TQSlider
{
-Q_OBJECT
+TQ_OBJECT
public:
L33tSlider(TQWidget * parent, const char * name=0);
@@ -56,7 +56,7 @@ private:
**/
class SliderAction : public TDEAction
{
-Q_OBJECT
+TQ_OBJECT
public:
SliderAction(const TQString& text, int accel, const TQObject *receiver,
diff --git a/noatun/library/noatun/downloader.h b/noatun/library/noatun/downloader.h
index 093b57d0..ea0d48f3 100644
--- a/noatun/library/noatun/downloader.h
+++ b/noatun/library/noatun/downloader.h
@@ -65,7 +65,7 @@ private:
**/
class Downloader : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
struct QueueItem
{
diff --git a/noatun/library/noatun/effects.h b/noatun/library/noatun/effects.h
index 73e5444f..0e299dde 100644
--- a/noatun/library/noatun/effects.h
+++ b/noatun/library/noatun/effects.h
@@ -96,7 +96,7 @@ private:
**/
class Effects : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
friend class Effect;
public:
diff --git a/noatun/library/noatun/engine.h b/noatun/library/noatun/engine.h
index 7be41d45..e4dc1403 100644
--- a/noatun/library/noatun/engine.h
+++ b/noatun/library/noatun/engine.h
@@ -32,7 +32,7 @@ class NoatunApp;
**/
class KDE_EXPORT Engine : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
friend class NoatunApp;
public:
diff --git a/noatun/library/noatun/equalizer.h b/noatun/library/noatun/equalizer.h
index a654fd13..e0eea2af 100644
--- a/noatun/library/noatun/equalizer.h
+++ b/noatun/library/noatun/equalizer.h
@@ -105,7 +105,7 @@ friend class Band;
friend class Preset;
friend class Engine;
-Q_OBJECT
+TQ_OBJECT
public:
Equalizer();
diff --git a/noatun/library/noatun/player.h b/noatun/library/noatun/player.h
index c4821d0f..3f3b3ae8 100644
--- a/noatun/library/noatun/player.h
+++ b/noatun/library/noatun/player.h
@@ -21,7 +21,7 @@ class KLibrary;
**/
class KDE_EXPORT Player : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
friend class Effects;
friend class PlaylistItemData;
diff --git a/noatun/library/noatun/playlist.h b/noatun/library/noatun/playlist.h
index b80721a0..a8188e3b 100644
--- a/noatun/library/noatun/playlist.h
+++ b/noatun/library/noatun/playlist.h
@@ -328,7 +328,7 @@ private:
**/
class Playlist : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
friend class PlaylistItemData;
public:
diff --git a/noatun/library/noatun/plugin.h b/noatun/library/noatun/plugin.h
index 23b6e481..f01b0f27 100644
--- a/noatun/library/noatun/plugin.h
+++ b/noatun/library/noatun/plugin.h
@@ -404,7 +404,7 @@ class NoatunListenerNotif;
**/
class NoatunListener : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
friend class NoatunListenerNotif;
@@ -453,7 +453,7 @@ private:
**/
class BoolNotifier : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
public:
BoolNotifier(bool *value, NoatunListener *listener, TQObject *parent=0);
diff --git a/noatun/library/noatun/pref.h b/noatun/library/noatun/pref.h
index 07275b56..4745a010 100644
--- a/noatun/library/noatun/pref.h
+++ b/noatun/library/noatun/pref.h
@@ -12,7 +12,7 @@ class CModule;
**/
class NoatunPreferences : public KDialogBase
{
-Q_OBJECT
+TQ_OBJECT
friend class CModule;
@@ -56,7 +56,7 @@ private:
**/
class KDE_EXPORT CModule : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun/library/noatun/scrollinglabel.h b/noatun/library/noatun/scrollinglabel.h
index aa2b3450..3260c70c 100644
--- a/noatun/library/noatun/scrollinglabel.h
+++ b/noatun/library/noatun/scrollinglabel.h
@@ -30,7 +30,7 @@
**/
class ScrollingLabel : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun/library/noatun/stdaction.h b/noatun/library/noatun/stdaction.h
index 31f5d20c..0ddf7f20 100644
--- a/noatun/library/noatun/stdaction.h
+++ b/noatun/library/noatun/stdaction.h
@@ -19,7 +19,7 @@ namespace NoatunStdAction
**/
class PlayAction : public TDEAction
{
-Q_OBJECT
+TQ_OBJECT
public:
PlayAction(TQObject *parent, const char *name);
@@ -33,7 +33,7 @@ private slots:
**/
class PlaylistAction : public TDEToggleAction
{
-Q_OBJECT
+TQ_OBJECT
public:
PlaylistAction(TQObject *parent, const char *name);
@@ -48,7 +48,7 @@ private slots:
*/
class PluginActionMenu : public TDEActionMenu
{
-Q_OBJECT
+TQ_OBJECT
public:
PluginActionMenu(TQObject *parent, const char *name);
@@ -82,7 +82,7 @@ private:
*/
class VisActionMenu : public TDEActionMenu
{
-Q_OBJECT
+TQ_OBJECT
public:
VisActionMenu(TQObject *parent, const char *name);
@@ -100,7 +100,7 @@ private:
*/
class LoopActionMenu : public TDEActionMenu
{
-Q_OBJECT
+TQ_OBJECT
public:
LoopActionMenu(TQObject *parent, const char *name);
diff --git a/noatun/library/noatun/stereobuttonaction.h b/noatun/library/noatun/stereobuttonaction.h
index 5ff9e904..477443d4 100644
--- a/noatun/library/noatun/stereobuttonaction.h
+++ b/noatun/library/noatun/stereobuttonaction.h
@@ -12,7 +12,7 @@ namespace NoatunStdAction
*/
class StereoButtonAction : public TDEAction
{
-Q_OBJECT
+TQ_OBJECT
public:
StereoButtonAction(const TQString& text, int accel = 0, TQObject* parent = 0, const char* name = 0 );
diff --git a/noatun/library/noatun/vequalizer.h b/noatun/library/noatun/vequalizer.h
index 4a5621ef..244fcd11 100644
--- a/noatun/library/noatun/vequalizer.h
+++ b/noatun/library/noatun/vequalizer.h
@@ -136,7 +136,7 @@ public:
**/
class KDE_EXPORT VInterpolation : public TQObject, public VBandsInterface
{
- Q_OBJECT
+ TQ_OBJECT
struct Private;
Private *d;
@@ -176,7 +176,7 @@ class VPreset;
**/
class KDE_EXPORT VEqualizer : public TQObject, public VBandsInterface
{
- Q_OBJECT
+ TQ_OBJECT
friend class VBand;
friend class VPreset;
diff --git a/noatun/library/noatun/video.h b/noatun/library/noatun/video.h
index ece120fe..9719f245 100644
--- a/noatun/library/noatun/video.h
+++ b/noatun/library/noatun/video.h
@@ -11,7 +11,7 @@ class TQPopupMenu;
**/
class VideoFrame : public KVideoWidget
{
-Q_OBJECT
+TQ_OBJECT
struct Private;
VideoFrame::Private *d;
diff --git a/noatun/library/noatuntags/tagsgetter.h b/noatun/library/noatuntags/tagsgetter.h
index c48727ea..65e3bdcd 100644
--- a/noatun/library/noatuntags/tagsgetter.h
+++ b/noatun/library/noatuntags/tagsgetter.h
@@ -9,7 +9,7 @@
class TagsGetter : public TQObject, public PlaylistNotifier
{
-Q_OBJECT
+TQ_OBJECT
public:
TagsGetter();
@@ -47,7 +47,7 @@ private:
class Control : public CModule
{
-Q_OBJECT
+TQ_OBJECT
public:
Control(TagsGetter* parent);
diff --git a/noatun/library/plugin_deps.h b/noatun/library/plugin_deps.h
index 777c70e3..875bec35 100644
--- a/noatun/library/plugin_deps.h
+++ b/noatun/library/plugin_deps.h
@@ -11,7 +11,7 @@ class NoatunListener;
class TimerThingy : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
public:
TimerThingy(Visualization*);
diff --git a/noatun/library/pluginmodule.h b/noatun/library/pluginmodule.h
index 47519d66..804ea492 100644
--- a/noatun/library/pluginmodule.h
+++ b/noatun/library/pluginmodule.h
@@ -50,7 +50,7 @@ private:
class PluginListView : public TDEListView
{
-Q_OBJECT
+TQ_OBJECT
friend class PluginListItem;
@@ -75,7 +75,7 @@ private:
class Plugins : public CModule
{
-Q_OBJECT
+TQ_OBJECT
public:
Plugins(TQObject *_parent = 0);
diff --git a/noatun/library/titleproxy.h b/noatun/library/titleproxy.h
index 2bb13243..5c0d9349 100644
--- a/noatun/library/titleproxy.h
+++ b/noatun/library/titleproxy.h
@@ -48,7 +48,7 @@ namespace TitleProxy
class Proxy : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
Proxy( KURL url );
@@ -111,7 +111,7 @@ namespace TitleProxy
class Server : public TQServerSocket
{
- Q_OBJECT
+ TQ_OBJECT
public: