diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:06:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:06:43 +0900 |
commit | 678ee0d63590ba7bf1cad32070c229d699617a3c (patch) | |
tree | 04cea2ad9f3a2067119417dfe2bbc583a973a2cf /kaboodle | |
parent | 7ca73e272ed839b546d224918ec538b57011782b (diff) | |
download | tdemultimedia-678ee0d63590ba7bf1cad32070c229d699617a3c.tar.gz tdemultimedia-678ee0d63590ba7bf1cad32070c229d699617a3c.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kaboodle')
-rw-r--r-- | kaboodle/conf.h | 2 | ||||
-rw-r--r-- | kaboodle/controls.h | 4 | ||||
-rw-r--r-- | kaboodle/engine.h | 2 | ||||
-rw-r--r-- | kaboodle/kaboodle_factory.h | 2 | ||||
-rw-r--r-- | kaboodle/kaboodleapp.h | 2 | ||||
-rw-r--r-- | kaboodle/player.h | 4 | ||||
-rw-r--r-- | kaboodle/userinterface.h | 2 | ||||
-rw-r--r-- | kaboodle/view.h | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/kaboodle/conf.h b/kaboodle/conf.h index 06699db0..59c0d3bd 100644 --- a/kaboodle/conf.h +++ b/kaboodle/conf.h @@ -35,7 +35,7 @@ namespace Kaboodle class Conf : public KDialogBase { -Q_OBJECT +TQ_OBJECT public: diff --git a/kaboodle/controls.h b/kaboodle/controls.h index 307281e4..73916b6e 100644 --- a/kaboodle/controls.h +++ b/kaboodle/controls.h @@ -42,7 +42,7 @@ namespace Kaboodle **/ class L33tSlider : public TQSlider { -Q_OBJECT +TQ_OBJECT public: L33tSlider(TQWidget * parent, const char * name=0); @@ -73,7 +73,7 @@ private: **/ class SliderAction : public TDEAction { -Q_OBJECT +TQ_OBJECT public: SliderAction(const TQString& text, int accel, const TQObject *receiver, diff --git a/kaboodle/engine.h b/kaboodle/engine.h index 974a8541..ccd5c6ba 100644 --- a/kaboodle/engine.h +++ b/kaboodle/engine.h @@ -44,7 +44,7 @@ namespace Kaboodle **/ class Engine : public TQObject { -Q_OBJECT +TQ_OBJECT public: diff --git a/kaboodle/kaboodle_factory.h b/kaboodle/kaboodle_factory.h index cca5591b..917429b7 100644 --- a/kaboodle/kaboodle_factory.h +++ b/kaboodle/kaboodle_factory.h @@ -34,7 +34,7 @@ class Player; class KaboodleFactory : public KParts::Factory { -Q_OBJECT +TQ_OBJECT public: diff --git a/kaboodle/kaboodleapp.h b/kaboodle/kaboodleapp.h index c248b91f..1872d72a 100644 --- a/kaboodle/kaboodleapp.h +++ b/kaboodle/kaboodleapp.h @@ -32,7 +32,7 @@ class UserInterface; class KaboodleApp : public TDEApplication { -Q_OBJECT +TQ_OBJECT public: diff --git a/kaboodle/player.h b/kaboodle/player.h index b528fa9d..f9379c56 100644 --- a/kaboodle/player.h +++ b/kaboodle/player.h @@ -42,7 +42,7 @@ class View; class BrowserExtension : public KParts::BrowserExtension { -Q_OBJECT +TQ_OBJECT public: @@ -51,7 +51,7 @@ public: class Player : public KMediaPlayer::Player { -Q_OBJECT +TQ_OBJECT public: diff --git a/kaboodle/userinterface.h b/kaboodle/userinterface.h index d82186a4..816941e7 100644 --- a/kaboodle/userinterface.h +++ b/kaboodle/userinterface.h @@ -41,7 +41,7 @@ namespace Kaboodle */ class UserInterface : public KParts::MainWindow { -Q_OBJECT +TQ_OBJECT public: UserInterface(TQWidget *parent, const KURL &initialFile = KURL()); diff --git a/kaboodle/view.h b/kaboodle/view.h index 9b4e8fba..c5003980 100644 --- a/kaboodle/view.h +++ b/kaboodle/view.h @@ -44,7 +44,7 @@ namespace Kaboodle { class View : public KMediaPlayer::View { -Q_OBJECT +TQ_OBJECT public: |