diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:05 +0900 |
commit | 826b1b771cc20f515acf936bd3a2dcd83ce353b8 (patch) | |
tree | 162b5b770de9e59e9e4585883875efc50d78cd43 /noatun-plugins/dub | |
parent | 05e1c8a9a53e4c272b40ec142d399393785c98c5 (diff) | |
download | tdeaddons-826b1b771cc20f515acf936bd3a2dcd83ce353b8.tar.gz tdeaddons-826b1b771cc20f515acf936bd3a2dcd83ce353b8.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun-plugins/dub')
-rw-r--r-- | noatun-plugins/dub/dub/dub.h | 2 | ||||
-rw-r--r-- | noatun-plugins/dub/dub/dubapp.h | 2 | ||||
-rw-r--r-- | noatun-plugins/dub/dub/dubconfigmodule.h | 2 | ||||
-rw-r--r-- | noatun-plugins/dub/dub/dubview.h | 2 | ||||
-rw-r--r-- | noatun-plugins/dub/dub/fileselectorwidget.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/dub/dub/dub.h b/noatun-plugins/dub/dub/dub.h index 75519bf..a2d6f24 100644 --- a/noatun-plugins/dub/dub/dub.h +++ b/noatun-plugins/dub/dub/dub.h @@ -45,7 +45,7 @@ class DubPlaylist; // dub specific application code class Dub : public DubApp { - Q_OBJECT + TQ_OBJECT public: diff --git a/noatun-plugins/dub/dub/dubapp.h b/noatun-plugins/dub/dub/dubapp.h index 5ff55c7..5187e34 100644 --- a/noatun-plugins/dub/dub/dubapp.h +++ b/noatun-plugins/dub/dub/dubapp.h @@ -29,7 +29,7 @@ class DubView; // Application stuff class DubApp : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT friend class DubView; diff --git a/noatun-plugins/dub/dub/dubconfigmodule.h b/noatun-plugins/dub/dub/dubconfigmodule.h index eef9842..6c928f6 100644 --- a/noatun-plugins/dub/dub/dubconfigmodule.h +++ b/noatun-plugins/dub/dub/dubconfigmodule.h @@ -12,7 +12,7 @@ **/ class DubConfigModule : public CModule { -Q_OBJECT +TQ_OBJECT public: enum PlayOrder { normal, shuffle, repeat, single }; diff --git a/noatun-plugins/dub/dub/dubview.h b/noatun-plugins/dub/dub/dubview.h index d1f2545..b618b17 100644 --- a/noatun-plugins/dub/dub/dubview.h +++ b/noatun-plugins/dub/dub/dubview.h @@ -30,7 +30,7 @@ // the viewing widget for the playlist class DubView : public FileSelectorWidget { - Q_OBJECT + TQ_OBJECT public: /** Constructor for the main view */ diff --git a/noatun-plugins/dub/dub/fileselectorwidget.h b/noatun-plugins/dub/dub/fileselectorwidget.h index 01d6e44..15599a7 100644 --- a/noatun-plugins/dub/dub/fileselectorwidget.h +++ b/noatun-plugins/dub/dub/fileselectorwidget.h @@ -33,7 +33,7 @@ class DubPlayListItem; class FileSelectorWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT friend class DubPlayListItem; |