From b4ce3f54fc7b8035c183c68d56835fb2ae6e37a6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 13:18:53 +0900 Subject: [PATCH] Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- kplayer/kplayer.h | 4 +- kplayer/kplayeractionlist.h | 10 ++-- kplayer/kplayerengine.h | 4 +- kplayer/kplayerlogwindow.h | 4 +- kplayer/kplayernode.h | 52 ++++++++++----------- kplayer/kplayernodeaction.h | 10 ++-- kplayer/kplayernodeview.h | 16 +++---- kplayer/kplayerpart.h | 4 +- kplayer/kplayerplaylist.h | 4 +- kplayer/kplayerprocess.h | 4 +- kplayer/kplayerproperties.h | 32 ++++++------- kplayer/kplayerpropertiesdialog.h | 78 +++++++++++++++---------------- kplayer/kplayersettings.h | 2 +- kplayer/kplayersettingsdialog.h | 28 +++++------ kplayer/kplayerslideraction.h | 8 ++-- kplayer/kplayersource.h | 30 ++++++------ kplayer/kplayerwidget.h | 4 +- 17 files changed, 147 insertions(+), 147 deletions(-) diff --git a/kplayer/kplayer.h b/kplayer/kplayer.h index a4409a1..854fe9d 100644 --- a/kplayer/kplayer.h +++ b/kplayer/kplayer.h @@ -54,7 +54,7 @@ class TQMenuData; */ class KPlayer : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT typedef struct _Toolbar { @@ -367,7 +367,7 @@ protected slots: */ class KPlayerApplication : public KUniqueApplication { - Q_OBJECT + TQ_OBJECT public: /** Constructs the KPlayer application. */ diff --git a/kplayer/kplayeractionlist.h b/kplayer/kplayeractionlist.h index e443d52..90d6d04 100644 --- a/kplayer/kplayeractionlist.h +++ b/kplayer/kplayeractionlist.h @@ -26,7 +26,7 @@ class TDEAction; */ class KPlayerActionList : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -82,7 +82,7 @@ protected: */ class KPlayerSimpleActionList : public KPlayerActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -107,7 +107,7 @@ protected: */ class KPlayerToggleActionList : public KPlayerSimpleActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -138,7 +138,7 @@ protected: */ class KPlayerTrackActionList : public KPlayerActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -163,7 +163,7 @@ protected: */ class KPlayerSubtitleTrackActionList : public KPlayerTrackActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ diff --git a/kplayer/kplayerengine.h b/kplayer/kplayerengine.h index eec3655..3a6cdf0 100644 --- a/kplayer/kplayerengine.h +++ b/kplayer/kplayerengine.h @@ -39,7 +39,7 @@ int listIndex (const TQStringList&, const TQString&); */ class KPlayerFileDialog : public KFileDialog { - Q_OBJECT + TQ_OBJECT public: /** Constructor. Parameters are passed to the KFileDialog constructor. */ @@ -55,7 +55,7 @@ public: */ class KPlayerEngine : public TQObject { - Q_OBJECT + TQ_OBJECT public: KPlayerEngine (TDEActionCollection* ac, TQWidget* parent, const char* name, TDEConfig*); diff --git a/kplayer/kplayerlogwindow.h b/kplayer/kplayerlogwindow.h index de40463..537eaa8 100644 --- a/kplayer/kplayerlogwindow.h +++ b/kplayer/kplayerlogwindow.h @@ -25,7 +25,7 @@ */ class KPlayerLogWidget : public KTextEdit { - Q_OBJECT + TQ_OBJECT public: KPlayerLogWidget (TDEActionCollection* ac, TQWidget* parent = 0, const char* name = 0); @@ -75,7 +75,7 @@ protected: */ class KPlayerLogWindow : public TQDockWindow { - Q_OBJECT + TQ_OBJECT public: KPlayerLogWindow (TDEActionCollection* ac, TQWidget* parent = 0, const char* name = 0); diff --git a/kplayer/kplayernode.h b/kplayer/kplayernode.h index 89d8b1a..3f1aef1 100644 --- a/kplayer/kplayernode.h +++ b/kplayer/kplayernode.h @@ -93,7 +93,7 @@ public: */ class KPlayerNode : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -237,7 +237,7 @@ protected: */ class KPlayerMediaNode : public KPlayerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -263,7 +263,7 @@ protected: */ class KPlayerFileNode : public KPlayerMediaNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -280,7 +280,7 @@ public: */ class KPlayerTrackNode : public KPlayerMediaNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -301,7 +301,7 @@ public: */ class KPlayerChannelNode : public KPlayerMediaNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -322,7 +322,7 @@ public: */ class KPlayerItemNode : public KPlayerMediaNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -347,7 +347,7 @@ protected: */ class KPlayerSearchItemNode : public KPlayerItemNode { - //Q_OBJECT + //TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -362,7 +362,7 @@ public: */ class KPlayerContainerNode : public KPlayerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -692,7 +692,7 @@ protected: */ class KPlayerTemporaryNode : public KPlayerContainerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -709,7 +709,7 @@ public: */ class KPlayerRootNode : public KPlayerContainerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -753,7 +753,7 @@ protected: */ class KPlayerDirectoryNode : public KPlayerContainerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -785,7 +785,7 @@ protected: */ class KPlayerExternalNode : public KPlayerDirectoryNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -802,7 +802,7 @@ public: */ class KPlayerGroupNode : public KPlayerContainerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -831,7 +831,7 @@ protected: */ class KPlayerCollectionNode : public KPlayerGroupNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -886,7 +886,7 @@ protected: */ class KPlayerPlaylistNode : public KPlayerGroupNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -936,7 +936,7 @@ protected: */ class KPlayerNowPlayingNode : public KPlayerPlaylistNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -972,7 +972,7 @@ protected: */ class KPlayerRecentNode : public KPlayerPlaylistNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1001,7 +1001,7 @@ protected: */ class KPlayerRecentsNode : public KPlayerRecentNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1025,7 +1025,7 @@ protected: */ class KPlayerDevicesNode : public KPlayerContainerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1132,7 +1132,7 @@ protected: */ class KPlayerDeviceNode : public KPlayerContainerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1173,7 +1173,7 @@ public: */ class KPlayerDiskNode : public KPlayerDeviceNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1306,7 +1306,7 @@ protected: */ class KPlayerTunerNode : public KPlayerDeviceNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1341,7 +1341,7 @@ protected: */ class KPlayerTVNode : public KPlayerTunerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1363,7 +1363,7 @@ protected: */ class KPlayerDVBNode : public KPlayerTunerNode { - Q_OBJECT + TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1386,7 +1386,7 @@ protected: */ class KPlayerSearchesNode : public KPlayerContainerNode { - //Q_OBJECT + //TQ_OBJECT public: /** Default constructor. Initializes the node. */ @@ -1407,7 +1407,7 @@ protected: */ class KPlayerSearchNode : public KPlayerGroupNode { - //Q_OBJECT + //TQ_OBJECT public: /** Default constructor. Initializes the node. */ diff --git a/kplayer/kplayernodeaction.h b/kplayer/kplayernodeaction.h index 961c2a6..7f8df18 100644 --- a/kplayer/kplayernodeaction.h +++ b/kplayer/kplayernodeaction.h @@ -31,7 +31,7 @@ class KPlayerNodeList; */ class KPlayerNodeActionList : public KPlayerActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -96,7 +96,7 @@ signals: */ class KPlayerContainerActionList : public KPlayerNodeActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -119,7 +119,7 @@ public: */ class KPlayerDevicesActionList : public KPlayerContainerActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -138,7 +138,7 @@ protected: */ class KPlayerDeviceActionMenu : public TDEActionMenu { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -183,7 +183,7 @@ signals: */ class KPlayerDiskActionMenu : public KPlayerDeviceActionMenu { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ diff --git a/kplayer/kplayernodeview.h b/kplayer/kplayernodeview.h index d20d3ec..c5ef7a8 100644 --- a/kplayer/kplayernodeview.h +++ b/kplayer/kplayernodeview.h @@ -57,7 +57,7 @@ protected: */ class KPlayerPropertiesDevice : public KPlayerPropertiesDevicePage { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -87,7 +87,7 @@ protected: */ class KPlayerDeviceDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -333,7 +333,7 @@ typedef TQValueList KPlayerHistory; */ class KPlayerHistoryActionList : public KPlayerActionList { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -364,7 +364,7 @@ protected: */ class KPlayerNodeView : public TDEListView { - Q_OBJECT + TQ_OBJECT public: /** Sets up the node view widget. */ @@ -642,7 +642,7 @@ protected: */ class KPlayerListView : public KPlayerNodeView { - Q_OBJECT + TQ_OBJECT public: /** Sets up the list view widget. */ @@ -777,7 +777,7 @@ protected: */ class KPlayerTreeView : public KPlayerNodeView { - Q_OBJECT + TQ_OBJECT public: /** Sets up the tree view widget. */ @@ -874,7 +874,7 @@ protected: */ class KPlayerLibrary : public TQSplitter { - Q_OBJECT + TQ_OBJECT public: /** Sets up the view widget. Adds tree and list children. */ @@ -984,7 +984,7 @@ protected: */ class KPlayerLibraryWindow : public TQDockWindow { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ diff --git a/kplayer/kplayerpart.h b/kplayer/kplayerpart.h index b62317c..540f64f 100644 --- a/kplayer/kplayerpart.h +++ b/kplayer/kplayerpart.h @@ -38,7 +38,7 @@ class TQPopupMenu; */ /*class KPlayerBrowserExtension : public KParts::BrowserExtension { - Q_OBJECT + TQ_OBJECT public: KPlayerBrowserExtension (KPlayerPart*); @@ -50,7 +50,7 @@ public: */ class KPlayerPart : public KParts::ReadOnlyPart { - Q_OBJECT + TQ_OBJECT public: KPlayerPart (TQWidget*, const char*, TQObject*, const char*, const TQStringList&); diff --git a/kplayer/kplayerplaylist.h b/kplayer/kplayerplaylist.h index e4b8dda..52908fe 100644 --- a/kplayer/kplayerplaylist.h +++ b/kplayer/kplayerplaylist.h @@ -28,7 +28,7 @@ */ class KPlayerPlaylistCombobox : public TQComboBox { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerPlaylistCombobox constructor. */ @@ -63,7 +63,7 @@ protected: */ class KPlayerPlaylist : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerPlaylist constructor. Creates an empty playlist. */ diff --git a/kplayer/kplayerprocess.h b/kplayer/kplayerprocess.h index 1603748..ab3bcc2 100644 --- a/kplayer/kplayerprocess.h +++ b/kplayer/kplayerprocess.h @@ -34,7 +34,7 @@ class KTempFile; */ class KPlayerLineOutputProcess : public TDEProcess { - Q_OBJECT + TQ_OBJECT public: /** Constructs the objects and sets the initial property values. @@ -110,7 +110,7 @@ protected: */ class KPlayerProcess : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** The process states. */ diff --git a/kplayer/kplayerproperties.h b/kplayer/kplayerproperties.h index 34e14af..c09e3b2 100644 --- a/kplayer/kplayerproperties.h +++ b/kplayer/kplayerproperties.h @@ -1204,7 +1204,7 @@ public: */ class KPlayerProperties : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -1622,7 +1622,7 @@ signals: */ class KPlayerConfiguration : public KPlayerProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2241,7 +2241,7 @@ public: */ class KPlayerMedia : public KPlayerProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2322,7 +2322,7 @@ protected: */ class KPlayerGenericProperties : public KPlayerMedia { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2415,7 +2415,7 @@ protected: */ class KPlayerMediaProperties : public KPlayerGenericProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2701,7 +2701,7 @@ public: */ class KPlayerDeviceProperties : public KPlayerMediaProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2725,7 +2725,7 @@ protected: */ class KPlayerTunerProperties : public KPlayerDeviceProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2792,7 +2792,7 @@ extern const uint channellistcount; */ class KPlayerTVProperties : public KPlayerTunerProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2844,7 +2844,7 @@ public: */ class KPlayerDVBProperties : public KPlayerTunerProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2871,7 +2871,7 @@ protected: */ class KPlayerDiskProperties : public KPlayerDeviceProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -2903,7 +2903,7 @@ public: */ class KPlayerTrackProperties : public KPlayerMediaProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -3307,7 +3307,7 @@ protected: */ class KPlayerDiskTrackProperties : public KPlayerTrackProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -3338,7 +3338,7 @@ public: */ class KPlayerChannelProperties : public KPlayerTrackProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -3382,7 +3382,7 @@ protected: */ class KPlayerTVChannelProperties : public KPlayerChannelProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -3413,7 +3413,7 @@ public: */ class KPlayerDVBChannelProperties : public KPlayerChannelProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ @@ -3454,7 +3454,7 @@ inline void KPlayerFrequencyProperty::setValue (int value) */ class KPlayerItemProperties : public KPlayerTrackProperties { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ diff --git a/kplayer/kplayerpropertiesdialog.h b/kplayer/kplayerpropertiesdialog.h index c98db2f..6de6d7f 100644 --- a/kplayer/kplayerpropertiesdialog.h +++ b/kplayer/kplayerpropertiesdialog.h @@ -37,7 +37,7 @@ class KPlayerItemProperties; class KPlayerPropertiesGeneral : public KPlayerPropertiesGeneralPage { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesGeneral (TQWidget* parent = 0, const char* name = 0); @@ -66,7 +66,7 @@ protected: class KPlayerPropertiesDeviceGeneral : public KPlayerPropertiesGeneral { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDeviceGeneral (TQWidget* parent = 0, const char* name = 0); @@ -81,7 +81,7 @@ public: class KPlayerPropertiesTVDeviceGeneral : public KPlayerPropertiesDeviceGeneral { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTVDeviceGeneral (TQWidget* parent = 0, const char* name = 0); @@ -97,7 +97,7 @@ public: class KPlayerPropertiesDVBDeviceGeneral : public KPlayerPropertiesDeviceGeneral { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDVBDeviceGeneral (TQWidget* parent = 0, const char* name = 0); @@ -113,7 +113,7 @@ public: class KPlayerPropertiesTrackGeneral : public KPlayerPropertiesGeneral { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTrackGeneral (TQWidget* parent = 0, const char* name = 0); @@ -127,7 +127,7 @@ public: class KPlayerPropertiesDiskTrackGeneral : public KPlayerPropertiesTrackGeneral { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDiskTrackGeneral (TQWidget* parent = 0, const char* name = 0); @@ -141,7 +141,7 @@ public: class KPlayerPropertiesChannelGeneral : public KPlayerPropertiesDiskTrackGeneral { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesChannelGeneral (TQWidget* parent = 0, const char* name = 0); @@ -156,7 +156,7 @@ public: class KPlayerPropertiesItemGeneral : public KPlayerPropertiesTrackGeneral { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesItemGeneral (TQWidget* parent = 0, const char* name = 0); @@ -171,7 +171,7 @@ public: class KPlayerPropertiesSize : public KPlayerPropertiesSizePage { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesSize (TQWidget* parent = 0, const char* name = 0); @@ -194,7 +194,7 @@ protected: class KPlayerPropertiesDeviceSize : public KPlayerPropertiesSize { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDeviceSize (TQWidget* parent = 0, const char* name = 0); @@ -208,7 +208,7 @@ public: class KPlayerPropertiesTrackSize : public KPlayerPropertiesSize { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTrackSize (TQWidget* parent = 0, const char* name = 0); @@ -222,7 +222,7 @@ public: class KPlayerPropertiesSubtitles : public KPlayerPropertiesSubtitlesPage { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesSubtitles (TQWidget* parent = 0, const char* name = 0); @@ -250,7 +250,7 @@ protected: class KPlayerPropertiesDeviceSubtitles : public KPlayerPropertiesSubtitles { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDeviceSubtitles (TQWidget* parent = 0, const char* name = 0); @@ -264,7 +264,7 @@ public: class KPlayerPropertiesTrackSubtitles : public KPlayerPropertiesSubtitles { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTrackSubtitles (TQWidget* parent = 0, const char* name = 0); @@ -283,7 +283,7 @@ protected: class KPlayerPropertiesChannelSubtitles : public KPlayerPropertiesTrackSubtitles { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesChannelSubtitles (TQWidget* parent = 0, const char* name = 0); @@ -296,7 +296,7 @@ public: class KPlayerPropertiesDiskTrackSubtitles : public KPlayerPropertiesTrackSubtitles { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDiskTrackSubtitles (TQWidget* parent = 0, const char* name = 0); @@ -312,7 +312,7 @@ public: class KPlayerPropertiesItemSubtitles : public KPlayerPropertiesDiskTrackSubtitles { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesItemSubtitles (TQWidget* parent = 0, const char* name = 0); @@ -327,7 +327,7 @@ public: class KPlayerPropertiesAudio : public KPlayerPropertiesAudioPage { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesAudio (TQWidget* parent = 0, const char* name = 0); @@ -357,7 +357,7 @@ protected: class KPlayerPropertiesDeviceAudio : public KPlayerPropertiesAudio { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDeviceAudio (TQWidget* parent = 0, const char* name = 0); @@ -371,7 +371,7 @@ public: class KPlayerPropertiesDVBDeviceAudio : public KPlayerPropertiesDeviceAudio { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDVBDeviceAudio (TQWidget* parent = 0, const char* name = 0); @@ -390,7 +390,7 @@ protected: class KPlayerPropertiesTVDeviceAudio : public KPlayerPropertiesDVBDeviceAudio { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTVDeviceAudio (TQWidget* parent = 0, const char* name = 0); @@ -406,7 +406,7 @@ public: class KPlayerPropertiesTrackAudio : public KPlayerPropertiesAudio { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTrackAudio (TQWidget* parent = 0, const char* name = 0); @@ -425,7 +425,7 @@ protected: class KPlayerPropertiesVideo : public KPlayerPropertiesVideoPage { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesVideo (TQWidget* parent = 0, const char* name = 0); @@ -458,7 +458,7 @@ protected: class KPlayerPropertiesDeviceVideo : public KPlayerPropertiesVideo { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDeviceVideo (TQWidget* parent = 0, const char* name = 0); @@ -472,7 +472,7 @@ public: class KPlayerPropertiesDVBDeviceVideo : public KPlayerPropertiesDeviceVideo { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDVBDeviceVideo (TQWidget* parent = 0, const char* name = 0); @@ -491,7 +491,7 @@ protected: class KPlayerPropertiesTVDeviceVideo : public KPlayerPropertiesDVBDeviceVideo { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTVDeviceVideo (TQWidget* parent = 0, const char* name = 0); @@ -510,7 +510,7 @@ protected: class KPlayerPropertiesTrackVideo : public KPlayerPropertiesVideo { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTrackVideo (TQWidget* parent = 0, const char* name = 0); @@ -529,7 +529,7 @@ protected: class KPlayerPropertiesAdvanced : public KPlayerPropertiesAdvancedPage { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesAdvanced (TQWidget* parent = 0, const char* name = 0); @@ -557,7 +557,7 @@ protected: class KPlayerPropertiesDeviceAdvanced : public KPlayerPropertiesAdvanced { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDeviceAdvanced (TQWidget* parent = 0, const char* name = 0); @@ -570,7 +570,7 @@ public: class KPlayerPropertiesTVDeviceAdvanced : public KPlayerPropertiesDeviceAdvanced { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTVDeviceAdvanced (TQWidget* parent = 0, const char* name = 0); @@ -589,7 +589,7 @@ protected: class KPlayerPropertiesTrackAdvanced : public KPlayerPropertiesAdvanced { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesTrackAdvanced (TQWidget* parent = 0, const char* name = 0); @@ -602,7 +602,7 @@ public: class KPlayerPropertiesItemAdvanced : public KPlayerPropertiesTrackAdvanced { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesItemAdvanced (TQWidget* parent = 0, const char* name = 0); @@ -620,7 +620,7 @@ public: */ class KPlayerPropertiesDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: KPlayerPropertiesDialog (void); @@ -664,7 +664,7 @@ protected slots: */ class KPlayerDevicePropertiesDialog : public KPlayerPropertiesDialog { - Q_OBJECT + TQ_OBJECT public: KPlayerDevicePropertiesDialog (void) { } @@ -688,7 +688,7 @@ public: */ class KPlayerTVDevicePropertiesDialog : public KPlayerDevicePropertiesDialog { - Q_OBJECT + TQ_OBJECT public: KPlayerTVDevicePropertiesDialog (void) { } @@ -710,7 +710,7 @@ public: */ class KPlayerDVBDevicePropertiesDialog : public KPlayerDevicePropertiesDialog { - Q_OBJECT + TQ_OBJECT public: KPlayerDVBDevicePropertiesDialog (void) { } @@ -731,7 +731,7 @@ public: */ class KPlayerDiskTrackPropertiesDialog : public KPlayerPropertiesDialog { - Q_OBJECT + TQ_OBJECT public: KPlayerDiskTrackPropertiesDialog (void) { } @@ -755,7 +755,7 @@ public: */ class KPlayerChannelPropertiesDialog : public KPlayerDiskTrackPropertiesDialog { - Q_OBJECT + TQ_OBJECT public: KPlayerChannelPropertiesDialog (void) { } @@ -773,7 +773,7 @@ public: */ class KPlayerItemPropertiesDialog : public KPlayerDiskTrackPropertiesDialog { - Q_OBJECT + TQ_OBJECT public: KPlayerItemPropertiesDialog (void) { } diff --git a/kplayer/kplayersettings.h b/kplayer/kplayersettings.h index a16e4bb..a76cb56 100644 --- a/kplayer/kplayersettings.h +++ b/kplayer/kplayersettings.h @@ -23,7 +23,7 @@ */ class KPlayerSettings : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ diff --git a/kplayer/kplayersettingsdialog.h b/kplayer/kplayersettingsdialog.h index 3a72dc9..f9e9c40 100644 --- a/kplayer/kplayersettingsdialog.h +++ b/kplayer/kplayersettingsdialog.h @@ -37,7 +37,7 @@ TQString listEntry (TQComboBox* combo, bool hasDefault = false); class KPlayerSettingsAdvanced : public KPlayerSettingsAdvancedPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsAdvanced (TQWidget* parent = 0, const char* name = 0); @@ -61,7 +61,7 @@ protected: class KPlayerSettingsAudio : public KPlayerSettingsAudioPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsAudio (TQWidget* parent = 0, const char* name = 0); @@ -104,7 +104,7 @@ protected: class KPlayerSettingsControls : public KPlayerSettingsControlsPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsControls (TQWidget* parent = 0, const char* name = 0); @@ -121,7 +121,7 @@ protected: class KPlayerSettingsSliders : public KPlayerSettingsSlidersPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsSliders (TQWidget* parent = 0, const char* name = 0); @@ -138,7 +138,7 @@ protected: class KPlayerSettingsGeneral : public KPlayerSettingsGeneralPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsGeneral (TQWidget* parent = 0, const char* name = 0); @@ -155,7 +155,7 @@ protected: class KPlayerSettingsSubtitles : public KPlayerSettingsSubtitlesPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsSubtitles (TQWidget* parent = 0, const char* name = 0); @@ -182,7 +182,7 @@ protected: class KPlayerSettingsVideo : public KPlayerSettingsVideoPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsVideo (TQWidget* parent = 0, const char* name = 0); @@ -205,7 +205,7 @@ protected: class KPlayerSettingsProgress : public KPlayerSettingsProgressPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsProgress (TQWidget* parent = 0, const char* name = 0); @@ -219,7 +219,7 @@ public: class KPlayerSettingsVolume : public KPlayerSettingsVolumePage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsVolume (TQWidget* parent = 0, const char* name = 0); @@ -236,7 +236,7 @@ protected: class KPlayerSettingsContrast : public KPlayerSettingsContrastPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsContrast (TQWidget* parent = 0, const char* name = 0); @@ -253,7 +253,7 @@ protected: class KPlayerSettingsBrightness : public KPlayerSettingsBrightnessPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsBrightness (TQWidget* parent = 0, const char* name = 0); @@ -270,7 +270,7 @@ protected: class KPlayerSettingsHue : public KPlayerSettingsHuePage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsHue (TQWidget* parent = 0, const char* name = 0); @@ -287,7 +287,7 @@ protected: class KPlayerSettingsSaturation : public KPlayerSettingsSaturationPage { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsSaturation (TQWidget* parent = 0, const char* name = 0); @@ -307,7 +307,7 @@ protected: */ class KPlayerSettingsDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: KPlayerSettingsDialog (TQWidget*); diff --git a/kplayer/kplayerslideraction.h b/kplayer/kplayerslideraction.h index 3e53446..e7298a2 100644 --- a/kplayer/kplayerslideraction.h +++ b/kplayer/kplayerslideraction.h @@ -25,7 +25,7 @@ */ class KPlayerSlider : public TQSlider { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerSlider constructor. Parameters are passed on to TQSlider. */ @@ -97,7 +97,7 @@ protected: */ class KPlayerPopupFrame : public TQHBox { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerPopupFrame constructor. Parameters are passed on to TQHBox. */ @@ -116,7 +116,7 @@ protected: */ class KPlayerPopupSliderAction : public TDEAction { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerPopupSliderAction constructor. Parameters are passed on to TDEAction. */ @@ -145,7 +145,7 @@ protected: */ class KPlayerSliderAction : public KWidgetAction { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerSliderAction constructor. Parameters are passed on to TDEAction. */ diff --git a/kplayer/kplayersource.h b/kplayer/kplayersource.h index f2d09cf..1ebe89e 100644 --- a/kplayer/kplayersource.h +++ b/kplayer/kplayersource.h @@ -36,7 +36,7 @@ class KPlayerNodeList; */ class KPlayerSource : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerSource constructor. Sets up a source. */ @@ -111,7 +111,7 @@ signals: */ class KPlayerListSource : public KPlayerSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerListSource constructor. Sets up a source. */ @@ -142,7 +142,7 @@ protected: */ class KPlayerFixedSource : public KPlayerSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerFixedSource constructor. Sets up a source. */ @@ -170,7 +170,7 @@ protected: */ class KPlayerRootSource : public KPlayerFixedSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerRootSource constructor. Sets up a source. */ @@ -192,7 +192,7 @@ protected: */ class KPlayerDevicesSource : public KPlayerListSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerDevicesSource constructor. Sets up a source. */ @@ -222,7 +222,7 @@ protected: */ class KPlayerDeviceSource : public KPlayerSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerDeviceSource constructor. Sets up a source. */ @@ -243,7 +243,7 @@ public: */ class KPlayerDiskSource : public KPlayerDeviceSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerDiskSource constructor. Sets up a source. */ @@ -272,7 +272,7 @@ protected: */ class KPlayerTunerSource : public KPlayerDeviceSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerTunerSource constructor. Sets up a source. */ @@ -297,7 +297,7 @@ protected: */ class KPlayerStoreSource : public KPlayerListSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerStoreSource constructor. Sets up a source. */ @@ -318,7 +318,7 @@ protected: */ class KPlayerDirectorySource : public KPlayerSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerDirectorySource constructor. Sets up a source. */ @@ -359,7 +359,7 @@ protected: */ class KPlayerOriginSource : public KPlayerSource { - Q_OBJECT + TQ_OBJECT public: /** The KPlayerOriginSource constructor. Sets up a source. */ @@ -399,7 +399,7 @@ protected: */ class KPlayerKeySource : public KPlayerSource { - //Q_OBJECT + //TQ_OBJECT public: /** The KPlayerKeySource constructor. Sets up a source. */ @@ -443,7 +443,7 @@ protected: */ class KPlayerGroupSource : public KPlayerSource { - //Q_OBJECT + //TQ_OBJECT public: /** The KPlayerGroupSource constructor. Sets up a source. */ @@ -484,7 +484,7 @@ protected: */ class KPlayerSearchesSource : public KPlayerListSource { - //Q_OBJECT + //TQ_OBJECT public: /** The KPlayerSearchesSource constructor. Sets up a source. */ @@ -503,7 +503,7 @@ public: */ class KPlayerSearchSource : public KPlayerSource { - //Q_OBJECT + //TQ_OBJECT public: /** The KPlayerSearchSource constructor. Sets up a source. */ diff --git a/kplayer/kplayerwidget.h b/kplayer/kplayerwidget.h index e4d0408..225f914 100644 --- a/kplayer/kplayerwidget.h +++ b/kplayer/kplayerwidget.h @@ -26,7 +26,7 @@ */ class KPlayerWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: /** The widget constructor. Initializes internal data structures. @@ -72,7 +72,7 @@ protected slots: */ class KPlayerWorkspace : public TQWidget { - Q_OBJECT + TQ_OBJECT public: /** The workspace constructor. Creates the KPlayerWidget.