summaryrefslogtreecommitdiffstats
path: root/noatun-plugins
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:05:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:05:05 +0900
commit826b1b771cc20f515acf936bd3a2dcd83ce353b8 (patch)
tree162b5b770de9e59e9e4585883875efc50d78cd43 /noatun-plugins
parent05e1c8a9a53e4c272b40ec142d399393785c98c5 (diff)
downloadtdeaddons-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')
-rw-r--r--noatun-plugins/alarm/kminutespinbox.h2
-rw-r--r--noatun-plugins/alarm/kpercentspinbox.h2
-rw-r--r--noatun-plugins/alarm/wakeup.h4
-rw-r--r--noatun-plugins/alsaplayer/configmodule.h2
-rw-r--r--noatun-plugins/alsaplayer/seeker.h2
-rw-r--r--noatun-plugins/alsaplayer/userinterface.h2
-rw-r--r--noatun-plugins/charlatan/configmodule.h2
-rw-r--r--noatun-plugins/charlatan/seeker.h2
-rw-r--r--noatun-plugins/charlatan/userinterface.h2
-rw-r--r--noatun-plugins/dub/dub/dub.h2
-rw-r--r--noatun-plugins/dub/dub/dubapp.h2
-rw-r--r--noatun-plugins/dub/dub/dubconfigmodule.h2
-rw-r--r--noatun-plugins/dub/dub/dubview.h2
-rw-r--r--noatun-plugins/dub/dub/fileselectorwidget.h2
-rw-r--r--noatun-plugins/ffrs/ffrs.h6
-rw-r--r--noatun-plugins/lyrics/cmodule.h2
-rw-r--r--noatun-plugins/lyrics/historymanager.h2
-rw-r--r--noatun-plugins/lyrics/lyrics.h2
-rw-r--r--noatun-plugins/nexscope/gui.h4
-rw-r--r--noatun-plugins/nexscope/nex.h8
-rw-r--r--noatun-plugins/nexscope/noatunplugin.h2
-rw-r--r--noatun-plugins/nexscope/regionwidget.h2
-rw-r--r--noatun-plugins/noatunmadness/madness.h2
-rw-r--r--noatun-plugins/oblique/base.h2
-rw-r--r--noatun-plugins/oblique/cmodule.h6
-rw-r--r--noatun-plugins/oblique/menu.h8
-rw-r--r--noatun-plugins/oblique/oblique.h6
-rw-r--r--noatun-plugins/oblique/tree.h2
-rw-r--r--noatun-plugins/oblique/view.h4
-rw-r--r--noatun-plugins/pitchablespeed/pitchablespeed.h2
-rw-r--r--noatun-plugins/synaescope/cmodule.h2
-rw-r--r--noatun-plugins/synaescope/synaescope.h2
-rw-r--r--noatun-plugins/tippercanoe/synaescope.h2
-rw-r--r--noatun-plugins/tyler/tyler.h2
-rw-r--r--noatun-plugins/wavecapture/wavecapture.h2
35 files changed, 50 insertions, 50 deletions
diff --git a/noatun-plugins/alarm/kminutespinbox.h b/noatun-plugins/alarm/kminutespinbox.h
index 871608d..9a83d80 100644
--- a/noatun-plugins/alarm/kminutespinbox.h
+++ b/noatun-plugins/alarm/kminutespinbox.h
@@ -28,7 +28,7 @@
class KMinuteSpinBox : public TQSpinBox
{
-Q_OBJECT
+TQ_OBJECT
public:
KMinuteSpinBox(int _step = 1, TQWidget *_parent = 0, const char *_name = 0);
diff --git a/noatun-plugins/alarm/kpercentspinbox.h b/noatun-plugins/alarm/kpercentspinbox.h
index 2428cce..1e404a7 100644
--- a/noatun-plugins/alarm/kpercentspinbox.h
+++ b/noatun-plugins/alarm/kpercentspinbox.h
@@ -21,7 +21,7 @@
class KPercentSpinBox : public TQSpinBox
{
- Q_OBJECT
+ TQ_OBJECT
public:
KPercentSpinBox (int _step=1, TQWidget *_parent=0, const char *name=0);
diff --git a/noatun-plugins/alarm/wakeup.h b/noatun-plugins/alarm/wakeup.h
index b6f4f84..a7734f6 100644
--- a/noatun-plugins/alarm/wakeup.h
+++ b/noatun-plugins/alarm/wakeup.h
@@ -31,7 +31,7 @@ class KPercentSpinBox;
class Wakeup : public TQObject, public Plugin
{
- Q_OBJECT
+ TQ_OBJECT
NOATUNPLUGIND
@@ -60,7 +60,7 @@ private:
class WakeupPrefs : public CModule
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun-plugins/alsaplayer/configmodule.h b/noatun-plugins/alsaplayer/configmodule.h
index e4a2a42..4a97cf2 100644
--- a/noatun-plugins/alsaplayer/configmodule.h
+++ b/noatun-plugins/alsaplayer/configmodule.h
@@ -29,7 +29,7 @@ class TQCheckBox;
class AlsaPlayerConfigModule : public CModule
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun-plugins/alsaplayer/seeker.h b/noatun-plugins/alsaplayer/seeker.h
index 5b5b54b..a21e27a 100644
--- a/noatun-plugins/alsaplayer/seeker.h
+++ b/noatun-plugins/alsaplayer/seeker.h
@@ -27,7 +27,7 @@
class Seeker : public L33tSlider
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun-plugins/alsaplayer/userinterface.h b/noatun-plugins/alsaplayer/userinterface.h
index 2ea634c..f26beba 100644
--- a/noatun-plugins/alsaplayer/userinterface.h
+++ b/noatun-plugins/alsaplayer/userinterface.h
@@ -36,7 +36,7 @@ class Seeker;
*/
class AlsaPlayer : public APMainWindow, public UserInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun-plugins/charlatan/configmodule.h b/noatun-plugins/charlatan/configmodule.h
index 9be0c8f..5d2a7cb 100644
--- a/noatun-plugins/charlatan/configmodule.h
+++ b/noatun-plugins/charlatan/configmodule.h
@@ -29,7 +29,7 @@ class TQCheckBox;
class CharlatanConfigModule : public CModule
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun-plugins/charlatan/seeker.h b/noatun-plugins/charlatan/seeker.h
index c9ee411..f9e12d9 100644
--- a/noatun-plugins/charlatan/seeker.h
+++ b/noatun-plugins/charlatan/seeker.h
@@ -29,7 +29,7 @@ class TQTimer;
class Seeker : public TQSlider
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun-plugins/charlatan/userinterface.h b/noatun-plugins/charlatan/userinterface.h
index dcfb8fe..0b920ac 100644
--- a/noatun-plugins/charlatan/userinterface.h
+++ b/noatun-plugins/charlatan/userinterface.h
@@ -37,7 +37,7 @@ class TQLabel;
*/
class Charlatan : public TQWidget, public UserInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
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;
diff --git a/noatun-plugins/ffrs/ffrs.h b/noatun-plugins/ffrs/ffrs.h
index 6d10020..d33603b 100644
--- a/noatun-plugins/ffrs/ffrs.h
+++ b/noatun-plugins/ffrs/ffrs.h
@@ -7,7 +7,7 @@
class View : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
public:
View(int width, int height, int block, int unblock, TQColor front, TQColor back, int channel);
@@ -31,7 +31,7 @@ class FFRSPrefs;
class FFRS : public TQObject, public Plugin, public StereoScope
{
-Q_OBJECT
+TQ_OBJECT
public:
@@ -54,7 +54,7 @@ class KColorButton;
class FFRSPrefs : public CModule
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun-plugins/lyrics/cmodule.h b/noatun-plugins/lyrics/cmodule.h
index 5bbcadc..a31ba9a 100644
--- a/noatun-plugins/lyrics/cmodule.h
+++ b/noatun-plugins/lyrics/cmodule.h
@@ -15,7 +15,7 @@ struct SearchProvider {
};
class LyricsCModule : public CModule {
- Q_OBJECT
+ TQ_OBJECT
public:
LyricsCModule(TQObject *_parent);
diff --git a/noatun-plugins/lyrics/historymanager.h b/noatun-plugins/lyrics/historymanager.h
index 8a2f423..332897d 100644
--- a/noatun-plugins/lyrics/historymanager.h
+++ b/noatun-plugins/lyrics/historymanager.h
@@ -6,7 +6,7 @@
#include <tqobject.h>
class HistoryManager : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
HistoryManager(TQObject *parent = NULL);
diff --git a/noatun-plugins/lyrics/lyrics.h b/noatun-plugins/lyrics/lyrics.h
index 71bcfb8..962c90f 100644
--- a/noatun-plugins/lyrics/lyrics.h
+++ b/noatun-plugins/lyrics/lyrics.h
@@ -13,7 +13,7 @@
class HistoryManager;
class Lyrics : public TDEMainWindow, public Plugin {
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun-plugins/nexscope/gui.h b/noatun-plugins/nexscope/gui.h
index c817eee..7e7678d 100644
--- a/noatun-plugins/nexscope/gui.h
+++ b/noatun-plugins/nexscope/gui.h
@@ -12,7 +12,7 @@ class Renderer;
class Control : public TDEMainWindow
{
-Q_OBJECT
+TQ_OBJECT
public:
@@ -42,7 +42,7 @@ private:
class RendererListView : public TDEListView
{
-Q_OBJECT
+TQ_OBJECT
public:
RendererListView(TQWidget *p);
diff --git a/noatun-plugins/nexscope/nex.h b/noatun-plugins/nexscope/nex.h
index 55cb888..87bee87 100644
--- a/noatun-plugins/nexscope/nex.h
+++ b/noatun-plugins/nexscope/nex.h
@@ -74,7 +74,7 @@ private:
class Spacer : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
public:
Spacer(TQWidget *parent) : TQWidget(parent)
@@ -223,7 +223,7 @@ private:
class NexCheckBox : public TQCheckBox
{
-Q_OBJECT
+TQ_OBJECT
public:
NexCheckBox(TQWidget *parent, const TQString &, bool *v);
@@ -238,7 +238,7 @@ private:
class NexColorButton : public KColorButton
{
-Q_OBJECT
+TQ_OBJECT
public:
NexColorButton(TQWidget *parent, Pixel *color);
@@ -271,7 +271,7 @@ class RendererList;
class RendererListConfigurator : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
public:
RendererListConfigurator(RendererList *l, TQWidget *parent);
diff --git a/noatun-plugins/nexscope/noatunplugin.h b/noatun-plugins/nexscope/noatunplugin.h
index 56cc21b..33a6e15 100644
--- a/noatun-plugins/nexscope/noatunplugin.h
+++ b/noatun-plugins/nexscope/noatunplugin.h
@@ -6,7 +6,7 @@
class NexPlugin : public TQObject, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun-plugins/nexscope/regionwidget.h b/noatun-plugins/nexscope/regionwidget.h
index 5f2aaa1..ad6e523 100644
--- a/noatun-plugins/nexscope/regionwidget.h
+++ b/noatun-plugins/nexscope/regionwidget.h
@@ -11,7 +11,7 @@
**/
class RegionWidget : public TQFrame
{
-Q_OBJECT
+TQ_OBJECT
public:
RegionWidget(TQWidget *parent);
diff --git a/noatun-plugins/noatunmadness/madness.h b/noatun-plugins/noatunmadness/madness.h
index 629e188..15e6b73 100644
--- a/noatun-plugins/noatunmadness/madness.h
+++ b/noatun-plugins/noatunmadness/madness.h
@@ -9,7 +9,7 @@
class Madness : public TQObject, public MonoFFTScope, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
public:
Madness();
diff --git a/noatun-plugins/oblique/base.h b/noatun-plugins/oblique/base.h
index 6c3bea8..2304483 100644
--- a/noatun-plugins/oblique/base.h
+++ b/noatun-plugins/oblique/base.h
@@ -17,7 +17,7 @@ typedef unsigned int FileId;
class Base : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
struct Private;
diff --git a/noatun-plugins/oblique/cmodule.h b/noatun-plugins/oblique/cmodule.h
index f0ee0d4..4d36b1b 100644
--- a/noatun-plugins/oblique/cmodule.h
+++ b/noatun-plugins/oblique/cmodule.h
@@ -18,7 +18,7 @@ class TQTabWidget;
class SchemaConfig : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
Oblique *mOblique;
@@ -84,7 +84,7 @@ class SliceListItem;
class SliceConfig : public TQWidget
{
-Q_OBJECT
+TQ_OBJECT
Oblique *mOblique;
TDEListView *mSliceList;
@@ -109,7 +109,7 @@ private slots:
class Configure : public CModule
{
-Q_OBJECT
+TQ_OBJECT
TQTabWidget *tabs;
SchemaConfig *schema;
diff --git a/noatun-plugins/oblique/menu.h b/noatun-plugins/oblique/menu.h
index 88c8ea7..0884853 100644
--- a/noatun-plugins/oblique/menu.h
+++ b/noatun-plugins/oblique/menu.h
@@ -16,7 +16,7 @@
**/
class FileMenu : public TDEPopupMenu
{
-Q_OBJECT
+TQ_OBJECT
TQValueList<File> mFiles;
@@ -35,7 +35,7 @@ private slots:
class SliceListAction : public TDEActionMenu
{
-Q_OBJECT
+TQ_OBJECT
TQMap<int, Slice*> mIndexToSlices;
TQValueList<File> mFiles;
@@ -59,7 +59,7 @@ private slots:
class SchemaListAction : public TDEActionMenu
{
-Q_OBJECT
+TQ_OBJECT
TQMap<int, TQString> mIndexToSchemas;
Tree *mTree;
@@ -84,7 +84,7 @@ private slots:
class ObliquePropertiesDialog : public KPropertiesDialog
{
-Q_OBJECT
+TQ_OBJECT
TQValueList<File> mFiles;
diff --git a/noatun-plugins/oblique/oblique.h b/noatun-plugins/oblique/oblique.h
index ed03d79..49df2a8 100644
--- a/noatun-plugins/oblique/oblique.h
+++ b/noatun-plugins/oblique/oblique.h
@@ -26,7 +26,7 @@ namespace TDEIO
class Oblique : public Playlist, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
View *mView;
Base *mBase;
@@ -89,7 +89,7 @@ private slots:
**/
class Loader : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
// the id of the next file to load
FileId mDeferredLoaderAt;
@@ -113,7 +113,7 @@ private slots:
**/
class DirectoryAdder : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
Oblique *mOblique;
KURL::List pendingAddDirectories;
diff --git a/noatun-plugins/oblique/tree.h b/noatun-plugins/oblique/tree.h
index 0bfb49c..9d2ba29 100644
--- a/noatun-plugins/oblique/tree.h
+++ b/noatun-plugins/oblique/tree.h
@@ -85,7 +85,7 @@ class Loader;
class Tree : public TDEListView
{
-Q_OBJECT
+TQ_OBJECT
Oblique *mOblique;
diff --git a/noatun-plugins/oblique/view.h b/noatun-plugins/oblique/view.h
index a9b3cdf..8fa4ce4 100644
--- a/noatun-plugins/oblique/view.h
+++ b/noatun-plugins/oblique/view.h
@@ -15,7 +15,7 @@ class TabWidget;
class View : public TDEMainWindow
{
-Q_OBJECT
+TQ_OBJECT
Oblique *mOblique;
Tree *mTree;
@@ -59,7 +59,7 @@ protected:
class LineEditAction : public KWidgetAction
{
-Q_OBJECT
+TQ_OBJECT
public:
LineEditAction(const TQString &text, const TQObject *reciever, const char *slot, TDEActionCollection *parent, const char *name);
diff --git a/noatun-plugins/pitchablespeed/pitchablespeed.h b/noatun-plugins/pitchablespeed/pitchablespeed.h
index 6a05344..ea0dc82 100644
--- a/noatun-plugins/pitchablespeed/pitchablespeed.h
+++ b/noatun-plugins/pitchablespeed/pitchablespeed.h
@@ -20,7 +20,7 @@ class TQSlider;
class PitchableSpeed : public SpeedTuner, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun-plugins/synaescope/cmodule.h b/noatun-plugins/synaescope/cmodule.h
index 8b13716..58ad890 100644
--- a/noatun-plugins/synaescope/cmodule.h
+++ b/noatun-plugins/synaescope/cmodule.h
@@ -26,7 +26,7 @@ class TQSpinBox;
class SynaePrefs : public CModule
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/noatun-plugins/synaescope/synaescope.h b/noatun-plugins/synaescope/synaescope.h
index e62fbe0..1659b62 100644
--- a/noatun-plugins/synaescope/synaescope.h
+++ b/noatun-plugins/synaescope/synaescope.h
@@ -16,7 +16,7 @@ class TDEProcess;
class SynaeScope : public TQObject, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun-plugins/tippercanoe/synaescope.h b/noatun-plugins/tippercanoe/synaescope.h
index 5270f9b..84701c3 100644
--- a/noatun-plugins/tippercanoe/synaescope.h
+++ b/noatun-plugins/tippercanoe/synaescope.h
@@ -18,7 +18,7 @@
class SynaeScope : public TQWidget, public StereoScope, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun-plugins/tyler/tyler.h b/noatun-plugins/tyler/tyler.h
index 2ae1ac9..95f3a7c 100644
--- a/noatun-plugins/tyler/tyler.h
+++ b/noatun-plugins/tyler/tyler.h
@@ -11,7 +11,7 @@
class Tyler : public TQObject, public StereoScope, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/noatun-plugins/wavecapture/wavecapture.h b/noatun-plugins/wavecapture/wavecapture.h
index 1686b12..820f82a 100644
--- a/noatun-plugins/wavecapture/wavecapture.h
+++ b/noatun-plugins/wavecapture/wavecapture.h
@@ -30,7 +30,7 @@ namespace TDEIO { class Job; }
class WaveCapture : public TQObject, public Plugin
{
-Q_OBJECT
+TQ_OBJECT
NOATUNPLUGIND