From 3da0c9594ec7967c35cc9851c9403f8303ec542b Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 17 Feb 2012 16:09:42 -0600 Subject: Remove spurious TQ_OBJECT instances --- quanta/components/csseditor/colorrequester.h | 2 +- quanta/components/csseditor/colorslider.h | 6 +++--- quanta/components/csseditor/csseditor.h | 2 +- quanta/components/csseditor/csseditor_globals.h | 2 +- quanta/components/csseditor/cssselector.h | 2 +- quanta/components/csseditor/doubleeditors.h | 8 ++++---- quanta/components/csseditor/encodingselector.h | 2 +- quanta/components/csseditor/fontfamilychooser.h | 2 +- quanta/components/csseditor/percentageeditor.h | 2 +- quanta/components/csseditor/propertysetter.h | 2 +- quanta/components/csseditor/specialsb.h | 10 +++++----- quanta/components/csseditor/styleeditor.h | 2 +- quanta/components/csseditor/stylesheetparser.h | 2 +- quanta/components/csseditor/tlpeditors.h | 6 +++--- quanta/components/cvsservice/cvsservice.h | 2 +- quanta/components/debugger/backtracelistview.h | 2 +- quanta/components/debugger/conditionalbreakpointdialog.h | 2 +- quanta/components/debugger/dbgp/dbgpnetwork.h | 2 +- quanta/components/debugger/dbgp/dbgpsettings.h | 2 +- quanta/components/debugger/dbgp/quantadebuggerdbgp.h | 2 +- quanta/components/debugger/debuggerbreakpointview.h | 2 +- quanta/components/debugger/debuggermanager.h | 2 +- quanta/components/debugger/debuggerui.h | 2 +- quanta/components/debugger/gubed/gubedsettings.h | 2 +- quanta/components/debugger/gubed/quantadebuggergubed.h | 2 +- quanta/components/debugger/interfaces/debuggerclient.h | 2 +- quanta/components/debugger/interfaces/debuggerinterface.h | 2 +- quanta/components/debugger/pathmapper.h | 2 +- quanta/components/debugger/pathmapperdialog.h | 2 +- quanta/components/debugger/quantadebuggerinterface.h | 2 +- quanta/components/debugger/variableslistview.h | 2 +- quanta/components/framewizard/areaattributedb.h | 2 +- quanta/components/framewizard/fmfpeditor.h | 2 +- quanta/components/framewizard/fmrceditor.h | 2 +- quanta/components/framewizard/framewizard.h | 2 +- quanta/components/framewizard/selectablearea.h | 2 +- quanta/components/framewizard/visualframeeditor.h | 2 +- quanta/components/tableeditor/tableeditor.h | 2 +- 38 files changed, 49 insertions(+), 49 deletions(-) (limited to 'quanta/components') diff --git a/quanta/components/csseditor/colorrequester.h b/quanta/components/csseditor/colorrequester.h index c78bee77..75d74d98 100644 --- a/quanta/components/csseditor/colorrequester.h +++ b/quanta/components/csseditor/colorrequester.h @@ -25,7 +25,7 @@ class KLineEdit; class KColorDialog; class colorRequester : public miniEditor{ Q_OBJECT - TQ_OBJECT + public: colorRequester(TQWidget *parent, const char* name=0); ~colorRequester(); diff --git a/quanta/components/csseditor/colorslider.h b/quanta/components/csseditor/colorslider.h index acff130c..33c75c30 100644 --- a/quanta/components/csseditor/colorslider.h +++ b/quanta/components/csseditor/colorslider.h @@ -30,7 +30,7 @@ class colorSlider : public miniEditor { Q_OBJECT - TQ_OBJECT + private : TQString m_functionName; protected: @@ -53,7 +53,7 @@ class colorSlider : public miniEditor { class RGBcolorSlider : public colorSlider { Q_OBJECT - TQ_OBJECT + public: RGBcolorSlider(TQWidget *parent=0, const char *name=0); ~RGBcolorSlider(){} @@ -62,7 +62,7 @@ class RGBcolorSlider : public colorSlider { //FOR CSS3 /*class HSLcolorSlider : public colorSlider { Q_OBJECT - TQ_OBJECT + public: HSLcolorSlider(TQWidget *parent=0, const char *name=0); ~HSLcolorSlider(); diff --git a/quanta/components/csseditor/csseditor.h b/quanta/components/csseditor/csseditor.h index e7cadebb..aee0695b 100644 --- a/quanta/components/csseditor/csseditor.h +++ b/quanta/components/csseditor/csseditor.h @@ -56,7 +56,7 @@ class myCheckListItem : public TQCheckListItem class CSSEditor : public CSSEditorS { Q_OBJECT - TQ_OBJECT + private: TQMyHighlighter *m_myhi; propertySetter *m_ps; diff --git a/quanta/components/csseditor/csseditor_globals.h b/quanta/components/csseditor/csseditor_globals.h index 8efbe4c5..b2cd1405 100644 --- a/quanta/components/csseditor/csseditor_globals.h +++ b/quanta/components/csseditor/csseditor_globals.h @@ -51,7 +51,7 @@ const TQStringList HTMLColors(TQStringList::split(",",TQString("aliceblue,antiqu class mySpinBox : public TQSpinBox{ Q_OBJECT - TQ_OBJECT + public: mySpinBox(TQWidget * parent = 0, const char * name = 0 ); mySpinBox( int minValue, int maxValue, int step = 1, TQWidget * parent = 0, const char * name = 0 ); diff --git a/quanta/components/csseditor/cssselector.h b/quanta/components/csseditor/cssselector.h index 9f3d293e..a71f587b 100644 --- a/quanta/components/csseditor/cssselector.h +++ b/quanta/components/csseditor/cssselector.h @@ -30,7 +30,7 @@ class TQStringList; class CSSSelector : public CSSSelectorS { Q_OBJECT - TQ_OBJECT + private: TQListViewItem *m_currentItem; diff --git a/quanta/components/csseditor/doubleeditors.h b/quanta/components/csseditor/doubleeditors.h index 4c293e4f..94cbf164 100644 --- a/quanta/components/csseditor/doubleeditors.h +++ b/quanta/components/csseditor/doubleeditors.h @@ -25,7 +25,7 @@ class doubleEditorBase : public miniEditor { Q_OBJECT - TQ_OBJECT + protected: TQString m_sxValue, m_dxValue; @@ -46,7 +46,7 @@ class doubleEditorBase : public miniEditor { class doublePercentageEditor : public doubleEditorBase { Q_OBJECT - TQ_OBJECT + private: mySpinBox *m_sbSx, *m_sbDx; @@ -60,7 +60,7 @@ class doublePercentageEditor : public doubleEditorBase { class doubleComboBoxEditor : public doubleEditorBase { Q_OBJECT - TQ_OBJECT + private: TQComboBox *m_cbSx, *m_cbDx; @@ -75,7 +75,7 @@ class doubleComboBoxEditor : public doubleEditorBase { class doubleLengthEditor : public doubleEditorBase { Q_OBJECT - TQ_OBJECT + private: specialSB *m_ssbSx, *m_ssbDx; diff --git a/quanta/components/csseditor/encodingselector.h b/quanta/components/csseditor/encodingselector.h index fcca20c6..6ee05ccd 100644 --- a/quanta/components/csseditor/encodingselector.h +++ b/quanta/components/csseditor/encodingselector.h @@ -28,7 +28,7 @@ class encodingSelector : public encodingSelectorS { Q_OBJECT - TQ_OBJECT + public: encodingSelector(TQWidget *parent=0, const char* name=0); diff --git a/quanta/components/csseditor/fontfamilychooser.h b/quanta/components/csseditor/fontfamilychooser.h index 2b18e30f..70d359eb 100644 --- a/quanta/components/csseditor/fontfamilychooser.h +++ b/quanta/components/csseditor/fontfamilychooser.h @@ -24,7 +24,7 @@ class TQStringList; class fontFamilyChooser : public fontFamilyChooserS { Q_OBJECT - TQ_OBJECT + private: enum FontOrigin { available, generic }; TQString m_currentSelectedFont; diff --git a/quanta/components/csseditor/percentageeditor.h b/quanta/components/csseditor/percentageeditor.h index d4cacecd..34cf3903 100644 --- a/quanta/components/csseditor/percentageeditor.h +++ b/quanta/components/csseditor/percentageeditor.h @@ -38,7 +38,7 @@ class propertySetter; class percentageEditor : public miniEditor { Q_OBJECT - TQ_OBJECT + private: mySpinBox *m_sb; public: diff --git a/quanta/components/csseditor/propertysetter.h b/quanta/components/csseditor/propertysetter.h index 3f1c5af4..a49f585c 100644 --- a/quanta/components/csseditor/propertysetter.h +++ b/quanta/components/csseditor/propertysetter.h @@ -33,7 +33,7 @@ class KPushButton; class propertySetter : public TQHBox { Q_OBJECT - TQ_OBJECT + private: unsigned int m_ind; diff --git a/quanta/components/csseditor/specialsb.h b/quanta/components/csseditor/specialsb.h index 1536c5fe..ef74213f 100644 --- a/quanta/components/csseditor/specialsb.h +++ b/quanta/components/csseditor/specialsb.h @@ -29,7 +29,7 @@ class KLineEdit; class specialSB : public miniEditor { Q_OBJECT - TQ_OBJECT + protected: TQComboBox *m_cb; mySpinBox *m_sb; @@ -55,28 +55,28 @@ class specialSB : public miniEditor { class angleEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: angleEditor(TQWidget *parent=0, const char *name=0); }; class frequencyEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: frequencyEditor(TQWidget *parent=0, const char *name=0); }; class timeEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: timeEditor(TQWidget *parent=0, const char *name=0); }; class lengthEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: lengthEditor(TQWidget *parent=0, const char *name=0); }; diff --git a/quanta/components/csseditor/styleeditor.h b/quanta/components/csseditor/styleeditor.h index 16f7c855..83b54349 100644 --- a/quanta/components/csseditor/styleeditor.h +++ b/quanta/components/csseditor/styleeditor.h @@ -25,7 +25,7 @@ class propertySetter; class StyleEditor : public TLPEditor{ Q_OBJECT - TQ_OBJECT + private: int m_iconWidth, m_iconHeight; diff --git a/quanta/components/csseditor/stylesheetparser.h b/quanta/components/csseditor/stylesheetparser.h index 9da028fb..c5183dfe 100644 --- a/quanta/components/csseditor/stylesheetparser.h +++ b/quanta/components/csseditor/stylesheetparser.h @@ -28,7 +28,7 @@ class stylesheetParser : public TQObject{ Q_OBJECT - TQ_OBJECT + private: enum parenthesisKind { opened, closed }; diff --git a/quanta/components/csseditor/tlpeditors.h b/quanta/components/csseditor/tlpeditors.h index 3ff7bbef..09c2e1f8 100644 --- a/quanta/components/csseditor/tlpeditors.h +++ b/quanta/components/csseditor/tlpeditors.h @@ -31,7 +31,7 @@ class TQLabel; class TLPEditor : public miniEditor { //editor with a line text and a button calling a dialog Q_OBJECT - TQ_OBJECT + protected: TQLineEdit *m_le; @@ -56,7 +56,7 @@ class TLPEditor : public miniEditor { //editor with a line text and a button cal class fontEditor : public TLPEditor{ Q_OBJECT - TQ_OBJECT + private: TQString m_initialValue; @@ -71,7 +71,7 @@ class fontEditor : public TLPEditor{ class URIEditor : public TLPEditor { Q_OBJECT - TQ_OBJECT + public: enum mode{ Multi, Single }; enum URIResourceType{ audio, image, mousePointer }; diff --git a/quanta/components/cvsservice/cvsservice.h b/quanta/components/cvsservice/cvsservice.h index e9f0945c..4ff92cbe 100644 --- a/quanta/components/cvsservice/cvsservice.h +++ b/quanta/components/cvsservice/cvsservice.h @@ -41,7 +41,7 @@ class CVSUpdateToDlgS; class CVSService : public TQObject, public CVSServiceDCOPIf { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/components/debugger/backtracelistview.h b/quanta/components/debugger/backtracelistview.h index e90226e8..0661af1a 100644 --- a/quanta/components/debugger/backtracelistview.h +++ b/quanta/components/debugger/backtracelistview.h @@ -71,7 +71,7 @@ class BacktraceListviewItem : public KListViewItem class BacktraceListview : public KListView { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/components/debugger/conditionalbreakpointdialog.h b/quanta/components/debugger/conditionalbreakpointdialog.h index ca67814e..5fb8a1bd 100644 --- a/quanta/components/debugger/conditionalbreakpointdialog.h +++ b/quanta/components/debugger/conditionalbreakpointdialog.h @@ -23,7 +23,7 @@ class ConditionalBreakpointDialog : public ConditionalBreakpointDialogS { Q_OBJECT - TQ_OBJECT + public: enum Break diff --git a/quanta/components/debugger/dbgp/dbgpnetwork.h b/quanta/components/debugger/dbgp/dbgpnetwork.h index a6f64a69..8cce9d6a 100644 --- a/quanta/components/debugger/dbgp/dbgpnetwork.h +++ b/quanta/components/debugger/dbgp/dbgpnetwork.h @@ -31,7 +31,7 @@ class KResolverEntry; class DBGpNetwork : public TQObject { Q_OBJECT - TQ_OBJECT + private: KNetwork::KStreamSocket *m_socket; diff --git a/quanta/components/debugger/dbgp/dbgpsettings.h b/quanta/components/debugger/dbgp/dbgpsettings.h index 6ec8e73b..96a25f25 100644 --- a/quanta/components/debugger/dbgp/dbgpsettings.h +++ b/quanta/components/debugger/dbgp/dbgpsettings.h @@ -22,7 +22,7 @@ class DBGpSettings : public DBGpSettingsS { Q_OBJECT - TQ_OBJECT + public: DBGpSettings(const TQString &protocolversion); diff --git a/quanta/components/debugger/dbgp/quantadebuggerdbgp.h b/quanta/components/debugger/dbgp/quantadebuggerdbgp.h index 668fbe30..5d7d551b 100644 --- a/quanta/components/debugger/dbgp/quantadebuggerdbgp.h +++ b/quanta/components/debugger/dbgp/quantadebuggerdbgp.h @@ -32,7 +32,7 @@ typedef TQMap StringMap; class QuantaDebuggerDBGp : public DebuggerClient { Q_OBJECT - TQ_OBJECT + public: QuantaDebuggerDBGp(TQObject *parent, const char* name, const TQStringList&); diff --git a/quanta/components/debugger/debuggerbreakpointview.h b/quanta/components/debugger/debuggerbreakpointview.h index f5b0d487..9724cec5 100644 --- a/quanta/components/debugger/debuggerbreakpointview.h +++ b/quanta/components/debugger/debuggerbreakpointview.h @@ -44,7 +44,7 @@ class DebuggerBreakpointViewItem : public KListViewItem class DebuggerBreakpointView : public KListView { Q_OBJECT - TQ_OBJECT + public: DebuggerBreakpointView(TQWidget *parent = 0, const char *name = 0); diff --git a/quanta/components/debugger/debuggermanager.h b/quanta/components/debugger/debuggermanager.h index de032937..1a4bec52 100644 --- a/quanta/components/debugger/debuggermanager.h +++ b/quanta/components/debugger/debuggermanager.h @@ -33,7 +33,7 @@ class Document; class DebuggerManager : public TQObject { Q_OBJECT - TQ_OBJECT + private: // client DebuggerClient *m_client; diff --git a/quanta/components/debugger/debuggerui.h b/quanta/components/debugger/debuggerui.h index c7e7d145..568a933f 100644 --- a/quanta/components/debugger/debuggerui.h +++ b/quanta/components/debugger/debuggerui.h @@ -35,7 +35,7 @@ class KURL; class DebuggerUI : public TQObject { Q_OBJECT - TQ_OBJECT + public: enum DebuggerStatus diff --git a/quanta/components/debugger/gubed/gubedsettings.h b/quanta/components/debugger/gubed/gubedsettings.h index b8fef421..ab07a6c6 100644 --- a/quanta/components/debugger/gubed/gubedsettings.h +++ b/quanta/components/debugger/gubed/gubedsettings.h @@ -22,7 +22,7 @@ class GubedSettings : public GubedSettingsS { Q_OBJECT - TQ_OBJECT + public slots: virtual void slotUseProxyToggle( bool useproxy); diff --git a/quanta/components/debugger/gubed/quantadebuggergubed.h b/quanta/components/debugger/gubed/quantadebuggergubed.h index d041e90d..5b53f128 100644 --- a/quanta/components/debugger/gubed/quantadebuggergubed.h +++ b/quanta/components/debugger/gubed/quantadebuggergubed.h @@ -31,7 +31,7 @@ typedef TQMap StringMap; class QuantaDebuggerGubed : public DebuggerClient { Q_OBJECT - TQ_OBJECT + public: QuantaDebuggerGubed(TQObject *parent, const char* name, const TQStringList&); diff --git a/quanta/components/debugger/interfaces/debuggerclient.h b/quanta/components/debugger/interfaces/debuggerclient.h index 69ba5650..adc914f8 100644 --- a/quanta/components/debugger/interfaces/debuggerclient.h +++ b/quanta/components/debugger/interfaces/debuggerclient.h @@ -63,7 +63,7 @@ namespace DebuggerClientCapabilities class DebuggerClient : public TQObject { Q_OBJECT - TQ_OBJECT + private: protected: diff --git a/quanta/components/debugger/interfaces/debuggerinterface.h b/quanta/components/debugger/interfaces/debuggerinterface.h index cf634884..fc8f0f2f 100644 --- a/quanta/components/debugger/interfaces/debuggerinterface.h +++ b/quanta/components/debugger/interfaces/debuggerinterface.h @@ -31,7 +31,7 @@ class PathMapper; class DebuggerInterface : public TQObject { Q_OBJECT - TQ_OBJECT + private: diff --git a/quanta/components/debugger/pathmapper.h b/quanta/components/debugger/pathmapper.h index b504ced9..f7d2c44a 100644 --- a/quanta/components/debugger/pathmapper.h +++ b/quanta/components/debugger/pathmapper.h @@ -28,7 +28,7 @@ class KURL; class PathMapper : public TQObject { Q_OBJECT - TQ_OBJECT + public: PathMapper(TQObject *parent = 0, const char *name = 0); diff --git a/quanta/components/debugger/pathmapperdialog.h b/quanta/components/debugger/pathmapperdialog.h index e8d6b8c4..8c198416 100644 --- a/quanta/components/debugger/pathmapperdialog.h +++ b/quanta/components/debugger/pathmapperdialog.h @@ -22,7 +22,7 @@ class PathMapperDialog : public PathMapperDialogS { Q_OBJECT - TQ_OBJECT + public: enum Direction diff --git a/quanta/components/debugger/quantadebuggerinterface.h b/quanta/components/debugger/quantadebuggerinterface.h index 5b9b5480..736bf517 100644 --- a/quanta/components/debugger/quantadebuggerinterface.h +++ b/quanta/components/debugger/quantadebuggerinterface.h @@ -28,7 +28,7 @@ class DebuggerManager; class QuantaDebuggerInterface : public DebuggerInterface { Q_OBJECT - TQ_OBJECT + private: DebuggerManager *m_manager; diff --git a/quanta/components/debugger/variableslistview.h b/quanta/components/debugger/variableslistview.h index 9a8f7347..af3db373 100644 --- a/quanta/components/debugger/variableslistview.h +++ b/quanta/components/debugger/variableslistview.h @@ -28,7 +28,7 @@ class DebuggerVariable; class VariablesListView : public KListView { Q_OBJECT - TQ_OBJECT + enum menuitems { diff --git a/quanta/components/framewizard/areaattributedb.h b/quanta/components/framewizard/areaattributedb.h index 79e105be..a4e3a837 100644 --- a/quanta/components/framewizard/areaattributedb.h +++ b/quanta/components/framewizard/areaattributedb.h @@ -26,7 +26,7 @@ class areaAttribute : public TQObject{ Q_OBJECT - TQ_OBJECT + private: TQRect m_geometry; diff --git a/quanta/components/framewizard/fmfpeditor.h b/quanta/components/framewizard/fmfpeditor.h index 2fc52e64..9080cc4d 100644 --- a/quanta/components/framewizard/fmfpeditor.h +++ b/quanta/components/framewizard/fmfpeditor.h @@ -26,7 +26,7 @@ class fmFPeditor : public fmFPeditorS { Q_OBJECT - TQ_OBJECT + public: fmFPeditor(); diff --git a/quanta/components/framewizard/fmrceditor.h b/quanta/components/framewizard/fmrceditor.h index ab33d5b4..abebe4ee 100644 --- a/quanta/components/framewizard/fmrceditor.h +++ b/quanta/components/framewizard/fmrceditor.h @@ -26,7 +26,7 @@ class fmRCeditor : public fmRCeditorS { Q_OBJECT - TQ_OBJECT + public: fmRCeditor(); ~fmRCeditor(); diff --git a/quanta/components/framewizard/framewizard.h b/quanta/components/framewizard/framewizard.h index 906319c8..c71a4e5a 100644 --- a/quanta/components/framewizard/framewizard.h +++ b/quanta/components/framewizard/framewizard.h @@ -26,7 +26,7 @@ class TQStringList; class FrameWizard : public FrameWizardS { Q_OBJECT - TQ_OBJECT + private: bool m_hasSelected, m_saved; // if saved = false the the file containing the frameset structure diff --git a/quanta/components/framewizard/selectablearea.h b/quanta/components/framewizard/selectablearea.h index ffdd9c20..0fc95d8b 100644 --- a/quanta/components/framewizard/selectablearea.h +++ b/quanta/components/framewizard/selectablearea.h @@ -29,7 +29,7 @@ class SelectableArea : public KHTMLPart { Q_OBJECT - TQ_OBJECT + public : SelectableArea(TQWidget *parent=0, const char *name=0); diff --git a/quanta/components/framewizard/visualframeeditor.h b/quanta/components/framewizard/visualframeeditor.h index 39bb4b4c..57ac82fe 100644 --- a/quanta/components/framewizard/visualframeeditor.h +++ b/quanta/components/framewizard/visualframeeditor.h @@ -29,7 +29,7 @@ class VisualFrameEditor : public TQHBox { Q_OBJECT - TQ_OBJECT + private: enum MarkupLanguage{XHTML,HTML}; tree *m_internalTree; diff --git a/quanta/components/tableeditor/tableeditor.h b/quanta/components/tableeditor/tableeditor.h index 2368d9d7..c97f9ca0 100644 --- a/quanta/components/tableeditor/tableeditor.h +++ b/quanta/components/tableeditor/tableeditor.h @@ -47,7 +47,7 @@ class Parser; class TableEditor : public TableEditorS { Q_OBJECT - TQ_OBJECT + public: TableEditor( TQWidget* parent = 0, const char* name = 0 ); -- cgit v1.2.1