summaryrefslogtreecommitdiffstats
path: root/src/kmplayerprocess.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 13:18:38 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-24 17:46:11 +0900
commitda8cf2c4b269dfb76e66cba765b995bd367c67e6 (patch)
tree498450c4f71adccff32dc7dbf438ed590263ea60 /src/kmplayerprocess.h
parentb62a1922fab2031d49fa921cf4b5dae3d9c7091c (diff)
downloadkmplayer-da8cf2c4b269dfb76e66cba765b995bd367c67e6.tar.gz
kmplayer-da8cf2c4b269dfb76e66cba765b995bd367c67e6.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f15328299d0c380543f17448311292fe57fae751)
Diffstat (limited to 'src/kmplayerprocess.h')
-rw-r--r--src/kmplayerprocess.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/kmplayerprocess.h b/src/kmplayerprocess.h
index a8f46e8..d420e02 100644
--- a/src/kmplayerprocess.h
+++ b/src/kmplayerprocess.h
@@ -54,7 +54,7 @@ class Backend_stub;
* Base class for all backend processes
*/
class KMPLAYER_EXPORT Process : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
enum State {
@@ -119,7 +119,7 @@ private:
* Base class for all MPlayer based processes
*/
class MPlayerBase : public Process {
- Q_OBJECT
+ TQ_OBJECT
public:
MPlayerBase (TQObject * parent, Settings * settings, const char * n);
@@ -145,7 +145,7 @@ class MPlayerPreferencesFrame;
* MPlayer process
*/
class KDE_EXPORT MPlayer : public MPlayerBase {
- Q_OBJECT
+ TQ_OBJECT
public:
MPlayer (TQObject * parent, Settings * settings);
@@ -236,7 +236,7 @@ protected:
* MEncoder recorder
*/
class MEncoder : public MPlayerBase, public Recorder {
- Q_OBJECT
+ TQ_OBJECT
public:
MEncoder (TQObject * parent, Settings * settings);
@@ -252,7 +252,7 @@ public slots:
*/
class KMPLAYER_NO_EXPORT MPlayerDumpstream
: public MPlayerBase, public Recorder {
- Q_OBJECT
+ TQ_OBJECT
public:
MPlayerDumpstream (TQObject * parent, Settings * settings);
@@ -270,7 +270,7 @@ class XMLPreferencesFrame;
* Base class for all backend processes having the KMPlayer::Backend interface
*/
class KMPLAYER_EXPORT CallbackProcess : public Process {
- Q_OBJECT
+ TQ_OBJECT
friend class Callback;
public:
@@ -377,7 +377,7 @@ private:
* Xine backend process
*/
class KMPLAYER_NO_EXPORT Xine : public CallbackProcess, public Recorder {
- Q_OBJECT
+ TQ_OBJECT
public:
Xine (TQObject * parent, Settings * settings);
@@ -390,7 +390,7 @@ public slots:
* GStreamer backend process
*/
class KMPLAYER_NO_EXPORT GStreamer : public CallbackProcess {
- Q_OBJECT
+ TQ_OBJECT
public:
GStreamer (TQObject * parent, Settings * settings);
@@ -403,7 +403,7 @@ public slots:
* ffmpeg backend recorder
*/
class KMPLAYER_EXPORT FFMpeg : public Process, public Recorder {
- Q_OBJECT
+ TQ_OBJECT
public:
FFMpeg (TQObject * parent, Settings * settings);
@@ -422,7 +422,7 @@ private slots:
*/
class KMPLAYER_NO_EXPORT NpStream : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
enum Reason {
@@ -457,7 +457,7 @@ private slots:
};
class KMPLAYER_NO_EXPORT NpPlayer : public Process {
- Q_OBJECT
+ TQ_OBJECT
public:
NpPlayer (TQObject * parent, Settings * settings, const TQString & srv);