summaryrefslogtreecommitdiffstats
path: root/noatun/library/noatun
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library/noatun')
-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
15 files changed, 23 insertions, 23 deletions
diff --git a/noatun/library/noatun/app.h b/noatun/library/noatun/app.h
index 8e8b0e1b..e337ddd9 100644
--- a/noatun/library/noatun/app.h
+++ b/noatun/library/noatun/app.h
@@ -31,7 +31,7 @@ namespace NoatunStdAction
class KDE_EXPORT NoatunApp : public KUniqueApplication
{
Q_OBJECT
- TQ_OBJECT
+
friend class Playlist;
public:
diff --git a/noatun/library/noatun/controls.h b/noatun/library/noatun/controls.h
index fad688fa..3e5f00c4 100644
--- a/noatun/library/noatun/controls.h
+++ b/noatun/library/noatun/controls.h
@@ -23,7 +23,7 @@ class TQLabel;
class KDE_EXPORT L33tSlider : public TQSlider
{
Q_OBJECT
- TQ_OBJECT
+
public:
L33tSlider(TQWidget * parent, const char * name=0);
L33tSlider(Qt::Orientation, TQWidget * parent, const char * name=0);
@@ -57,7 +57,7 @@ private:
class SliderAction : public KAction
{
Q_OBJECT
- TQ_OBJECT
+
public:
SliderAction(const TQString& text, int accel, const TQObject *receiver,
const char *member, TQObject* parent, const char* name );
diff --git a/noatun/library/noatun/downloader.h b/noatun/library/noatun/downloader.h
index 3fffc772..19b1d30d 100644
--- a/noatun/library/noatun/downloader.h
+++ b/noatun/library/noatun/downloader.h
@@ -66,7 +66,7 @@ private:
class Downloader : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
struct QueueItem
{
DownloadItem *notifier;
diff --git a/noatun/library/noatun/effects.h b/noatun/library/noatun/effects.h
index 0480729d..73e5444f 100644
--- a/noatun/library/noatun/effects.h
+++ b/noatun/library/noatun/effects.h
@@ -97,7 +97,7 @@ private:
class Effects : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
friend class Effect;
public:
Effects();
diff --git a/noatun/library/noatun/engine.h b/noatun/library/noatun/engine.h
index 19e28dde..7be41d45 100644
--- a/noatun/library/noatun/engine.h
+++ b/noatun/library/noatun/engine.h
@@ -33,7 +33,7 @@ class NoatunApp;
class KDE_EXPORT Engine : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
friend class NoatunApp;
public:
Engine(TQObject *parent=0);
diff --git a/noatun/library/noatun/equalizer.h b/noatun/library/noatun/equalizer.h
index 744958b3..a654fd13 100644
--- a/noatun/library/noatun/equalizer.h
+++ b/noatun/library/noatun/equalizer.h
@@ -106,7 +106,7 @@ friend class Preset;
friend class Engine;
Q_OBJECT
- TQ_OBJECT
+
public:
Equalizer();
~Equalizer();
diff --git a/noatun/library/noatun/player.h b/noatun/library/noatun/player.h
index ef65b648..c4821d0f 100644
--- a/noatun/library/noatun/player.h
+++ b/noatun/library/noatun/player.h
@@ -22,7 +22,7 @@ class KLibrary;
class KDE_EXPORT Player : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
friend class Effects;
friend class PlaylistItemData;
friend class PlaylistNotifier;
diff --git a/noatun/library/noatun/playlist.h b/noatun/library/noatun/playlist.h
index 6c390e77..2bc0f763 100644
--- a/noatun/library/noatun/playlist.h
+++ b/noatun/library/noatun/playlist.h
@@ -329,7 +329,7 @@ private:
class Playlist : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
friend class PlaylistItemData;
public:
Playlist(TQObject *parent, const char *name);
diff --git a/noatun/library/noatun/plugin.h b/noatun/library/noatun/plugin.h
index a79c05aa..14b53ec8 100644
--- a/noatun/library/noatun/plugin.h
+++ b/noatun/library/noatun/plugin.h
@@ -405,7 +405,7 @@ class NoatunListenerNotif;
class NoatunListener : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
friend class NoatunListenerNotif;
public:
@@ -454,7 +454,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 fe29fdf1..07275b56 100644
--- a/noatun/library/noatun/pref.h
+++ b/noatun/library/noatun/pref.h
@@ -13,7 +13,7 @@ class CModule;
class NoatunPreferences : public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
friend class CModule;
public:
@@ -57,7 +57,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 de5bf276..f2be37ee 100644
--- a/noatun/library/noatun/scrollinglabel.h
+++ b/noatun/library/noatun/scrollinglabel.h
@@ -31,7 +31,7 @@
class ScrollingLabel : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
ScrollingLabel(const TQString &initialText,TQWidget *parent,
diff --git a/noatun/library/noatun/stdaction.h b/noatun/library/noatun/stdaction.h
index b0e30098..9f9b639e 100644
--- a/noatun/library/noatun/stdaction.h
+++ b/noatun/library/noatun/stdaction.h
@@ -20,7 +20,7 @@ namespace NoatunStdAction
class PlayAction : public KAction
{
Q_OBJECT
- TQ_OBJECT
+
public:
PlayAction(TQObject *parent, const char *name);
private slots:
@@ -34,7 +34,7 @@ private slots:
class PlaylistAction : public KToggleAction
{
Q_OBJECT
- TQ_OBJECT
+
public:
PlaylistAction(TQObject *parent, const char *name);
private slots:
@@ -49,7 +49,7 @@ private slots:
class PluginActionMenu : public KActionMenu
{
Q_OBJECT
- TQ_OBJECT
+
public:
PluginActionMenu(TQObject *parent, const char *name);
/**
@@ -83,7 +83,7 @@ private:
class VisActionMenu : public KActionMenu
{
Q_OBJECT
- TQ_OBJECT
+
public:
VisActionMenu(TQObject *parent, const char *name);
private slots:
@@ -101,7 +101,7 @@ private:
class LoopActionMenu : public KActionMenu
{
Q_OBJECT
- TQ_OBJECT
+
public:
LoopActionMenu(TQObject *parent, const char *name);
private slots:
diff --git a/noatun/library/noatun/stereobuttonaction.h b/noatun/library/noatun/stereobuttonaction.h
index ac85b9ed..6e5312f9 100644
--- a/noatun/library/noatun/stereobuttonaction.h
+++ b/noatun/library/noatun/stereobuttonaction.h
@@ -13,7 +13,7 @@ namespace NoatunStdAction
class StereoButtonAction : public KAction
{
Q_OBJECT
- TQ_OBJECT
+
public:
StereoButtonAction(const TQString& text, int accel = 0, TQObject* parent = 0, const char* name = 0 );
StereoButtonAction(const TQString& text, int accel, const TQObject* receiver, const char* slot, TQObject* parent, const char* name = 0 );
diff --git a/noatun/library/noatun/vequalizer.h b/noatun/library/noatun/vequalizer.h
index 5e494472..f28fb4e1 100644
--- a/noatun/library/noatun/vequalizer.h
+++ b/noatun/library/noatun/vequalizer.h
@@ -137,7 +137,7 @@ public:
class KDE_EXPORT VInterpolation : public TQObject, public VBandsInterface
{
Q_OBJECT
- TQ_OBJECT
+
struct Private;
Private *d;
friend class VBand;
@@ -177,7 +177,7 @@ class VPreset;
class KDE_EXPORT VEqualizer : public TQObject, public VBandsInterface
{
Q_OBJECT
- TQ_OBJECT
+
friend class VBand;
friend class VPreset;
friend class Engine;
diff --git a/noatun/library/noatun/video.h b/noatun/library/noatun/video.h
index bed8f8ac..ece120fe 100644
--- a/noatun/library/noatun/video.h
+++ b/noatun/library/noatun/video.h
@@ -12,7 +12,7 @@ class TQPopupMenu;
class VideoFrame : public KVideoWidget
{
Q_OBJECT
- TQ_OBJECT
+
struct Private;
VideoFrame::Private *d;