diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:42 -0600 |
commit | 3da0c9594ec7967c35cc9851c9403f8303ec542b (patch) | |
tree | e82a47b6c444f8931ee51ebc5b6985ecb3d68d39 /quanta | |
parent | 1179541f92513abc4cc3798ab2bb96960b3daebd (diff) | |
download | tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.tar.gz tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'quanta')
111 files changed, 136 insertions, 136 deletions
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<TQString, TQString> 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<TQString, TQString> 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 ); diff --git a/quanta/dialogs/actionconfigdialog.h b/quanta/dialogs/actionconfigdialog.h index 0187390e..97125f3d 100644 --- a/quanta/dialogs/actionconfigdialog.h +++ b/quanta/dialogs/actionconfigdialog.h @@ -42,7 +42,7 @@ struct ToolbarEntry { class ActionConfigDialog: public ActionConfigDialogS { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/dialogs/copyto.h b/quanta/dialogs/copyto.h index b46947db..16b7410b 100644 --- a/quanta/dialogs/copyto.h +++ b/quanta/dialogs/copyto.h @@ -30,7 +30,7 @@ class KURL; class CopyTo : public TQObject{ Q_OBJECT - TQ_OBJECT + public: CopyTo(const KURL& dirURL); ~CopyTo(); diff --git a/quanta/dialogs/dirtydlg.h b/quanta/dialogs/dirtydlg.h index b14fe23e..194275af 100644 --- a/quanta/dialogs/dirtydlg.h +++ b/quanta/dialogs/dirtydlg.h @@ -28,7 +28,7 @@ class TQCloseEvent; class DirtyDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: DirtyDlg(const TQString& srcName, const TQString& destName, bool createBackup = false, TQWidget *parent=0, const char *name=0); diff --git a/quanta/dialogs/dtepeditdlg.h b/quanta/dialogs/dtepeditdlg.h index 148af592..3e0f942f 100644 --- a/quanta/dialogs/dtepeditdlg.h +++ b/quanta/dialogs/dtepeditdlg.h @@ -56,7 +56,7 @@ struct StructGroup { class DTEPEditDlg : public DTEPEditDlgS { Q_OBJECT - TQ_OBJECT + public: DTEPEditDlg(const TQString& descriptionFile, TQWidget *parent = 0, const char *name = 0); ~DTEPEditDlg(); diff --git a/quanta/dialogs/filecombo.h b/quanta/dialogs/filecombo.h index dbab2ed8..3288cd85 100644 --- a/quanta/dialogs/filecombo.h +++ b/quanta/dialogs/filecombo.h @@ -31,7 +31,7 @@ class KURL; class FileCombo : public TQWidget { Q_OBJECT - TQ_OBJECT + public: FileCombo(const KURL& a_baseURL, TQWidget *parent=0, const char *name=0); FileCombo(TQWidget *parent=0, const char *name=0); diff --git a/quanta/dialogs/settings/abbreviation.h b/quanta/dialogs/settings/abbreviation.h index 3199881f..39f49ff3 100644 --- a/quanta/dialogs/settings/abbreviation.h +++ b/quanta/dialogs/settings/abbreviation.h @@ -27,7 +27,7 @@ struct DTDStruct; class AbbreviationDlg : public AbbreviationDlgS { Q_OBJECT - TQ_OBJECT + public: AbbreviationDlg(TQWidget *parent, const char *name = 0); ~AbbreviationDlg(); diff --git a/quanta/dialogs/settings/filemasks.h b/quanta/dialogs/settings/filemasks.h index 10191919..1a76334e 100644 --- a/quanta/dialogs/settings/filemasks.h +++ b/quanta/dialogs/settings/filemasks.h @@ -24,7 +24,7 @@ class FileMasks : public FileMasksS { Q_OBJECT - TQ_OBJECT + public: FileMasks(TQWidget *parent=0, const char *name=0); ~FileMasks(); diff --git a/quanta/dialogs/settings/parseroptions.h b/quanta/dialogs/settings/parseroptions.h index 7d7cbd69..39d7bd53 100644 --- a/quanta/dialogs/settings/parseroptions.h +++ b/quanta/dialogs/settings/parseroptions.h @@ -23,7 +23,7 @@ class KConfig; class ParserOptions : public ParserOptionsUI { Q_OBJECT - TQ_OBJECT + public: ParserOptions( KConfig *config, TQWidget* parent = 0, const char* name = 0); diff --git a/quanta/dialogs/settings/previewoptions.h b/quanta/dialogs/settings/previewoptions.h index a3cce15e..898345af 100644 --- a/quanta/dialogs/settings/previewoptions.h +++ b/quanta/dialogs/settings/previewoptions.h @@ -24,7 +24,7 @@ class KConfig; class PreviewOptions : public PreviewOptionsS { Q_OBJECT - TQ_OBJECT + public: PreviewOptions(TQWidget *parent=0, const char *name=0); ~PreviewOptions(); diff --git a/quanta/dialogs/specialchardialog.h b/quanta/dialogs/specialchardialog.h index 4ba58e0c..a8d6affd 100644 --- a/quanta/dialogs/specialchardialog.h +++ b/quanta/dialogs/specialchardialog.h @@ -24,7 +24,7 @@ class SpecialCharDialog : public SpecialCharDialogS { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/dialogs/tagdialogs/colorcombo.h b/quanta/dialogs/tagdialogs/colorcombo.h index ac7ed429..f26bf9dd 100644 --- a/quanta/dialogs/tagdialogs/colorcombo.h +++ b/quanta/dialogs/tagdialogs/colorcombo.h @@ -40,7 +40,7 @@ class ColorCombo : public TQComboBox { Q_OBJECT - TQ_OBJECT + public: ColorCombo( TQWidget *parent = 0L, const char *name = 0L ); ~ColorCombo(); diff --git a/quanta/dialogs/tagdialogs/listdlg.h b/quanta/dialogs/tagdialogs/listdlg.h index 87da2c57..eaf46a79 100644 --- a/quanta/dialogs/tagdialogs/listdlg.h +++ b/quanta/dialogs/tagdialogs/listdlg.h @@ -32,7 +32,7 @@ selected item with the getEntry() method. class ListDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: ListDlg(TQStringList &entryList,TQWidget* parent=0, const char *name =0); ~ListDlg(); diff --git a/quanta/dialogs/tagdialogs/pictureview.h b/quanta/dialogs/tagdialogs/pictureview.h index 414cbf7c..2ee4cfd0 100644 --- a/quanta/dialogs/tagdialogs/pictureview.h +++ b/quanta/dialogs/tagdialogs/pictureview.h @@ -29,7 +29,7 @@ used by TagImgDlg class PictureView : public TQFrame { Q_OBJECT - TQ_OBJECT + public: PictureView(TQWidget *parent=0, char *file=0, const char *name=0); /** try scale image */ diff --git a/quanta/dialogs/tagdialogs/tagdialog.h b/quanta/dialogs/tagdialogs/tagdialog.h index c3e6c2d4..21ad7b0f 100644 --- a/quanta/dialogs/tagdialogs/tagdialog.h +++ b/quanta/dialogs/tagdialogs/tagdialog.h @@ -39,7 +39,7 @@ class TQShowEvent; class TagDialog : public TQTabDialog { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/quanta/dialogs/tagdialogs/tagimgdlg.h b/quanta/dialogs/tagdialogs/tagimgdlg.h index ac1e9a58..09d3a3ee 100644 --- a/quanta/dialogs/tagdialogs/tagimgdlg.h +++ b/quanta/dialogs/tagdialogs/tagimgdlg.h @@ -40,7 +40,7 @@ class TQImage; class TagImgDlg : public TQWidget, TagWidget { Q_OBJECT - TQ_OBJECT + public: TagImgDlg(const DTDStruct *dtd, TQWidget *parent=0, const char *name=0); ~TagImgDlg(); diff --git a/quanta/dialogs/tagdialogs/tagmaildlg.h b/quanta/dialogs/tagdialogs/tagmaildlg.h index 19940583..9cb82e5d 100644 --- a/quanta/dialogs/tagdialogs/tagmaildlg.h +++ b/quanta/dialogs/tagdialogs/tagmaildlg.h @@ -24,7 +24,7 @@ class TagMailDlg : public TagMail { Q_OBJECT - TQ_OBJECT + public: TagMailDlg(TQWidget *parent=0, const char *name=0); ~TagMailDlg(); diff --git a/quanta/dialogs/tagdialogs/tagmiscdlg.h b/quanta/dialogs/tagdialogs/tagmiscdlg.h index 5561292d..222d6bab 100644 --- a/quanta/dialogs/tagdialogs/tagmiscdlg.h +++ b/quanta/dialogs/tagdialogs/tagmiscdlg.h @@ -24,7 +24,7 @@ class TagMisc; class TagMiscDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: TagMiscDlg( TQWidget* parent = 0, const char* name = 0, bool addClosingTag=true, const TQString &element=TQString() ); diff --git a/quanta/dialogs/tagdialogs/tagquicklistdlg.h b/quanta/dialogs/tagdialogs/tagquicklistdlg.h index 9831a2d2..479cb8d6 100644 --- a/quanta/dialogs/tagdialogs/tagquicklistdlg.h +++ b/quanta/dialogs/tagdialogs/tagquicklistdlg.h @@ -33,7 +33,7 @@ class TQButtonGroup; class TagQuickListDlg : public TQDialog { Q_OBJECT - TQ_OBJECT + public: TagQuickListDlg(TQWidget *parent=0, const char *name=0); ~TagQuickListDlg(); diff --git a/quanta/dialogs/tagdialogs/tagxml.h b/quanta/dialogs/tagdialogs/tagxml.h index d4cc6ce3..ec25e7ed 100644 --- a/quanta/dialogs/tagdialogs/tagxml.h +++ b/quanta/dialogs/tagdialogs/tagxml.h @@ -28,7 +28,7 @@ class Tagxml : public TQWidget, TagWidget { Q_OBJECT - TQ_OBJECT + public: /** construtor */ Tagxml(TQDomNode &d, TQTag *dtdTag, TQWidget* parent=0, const char *name=0); diff --git a/quanta/messages/annotationoutput.h b/quanta/messages/annotationoutput.h index beb1925c..352f046d 100644 --- a/quanta/messages/annotationoutput.h +++ b/quanta/messages/annotationoutput.h @@ -37,7 +37,7 @@ enum AnnotationScope class AnnotationOutput : public KTabWidget { Q_OBJECT - TQ_OBJECT + public: AnnotationOutput(TQWidget *parent = 0, const char *name = 0); diff --git a/quanta/messages/messageoutput.h b/quanta/messages/messageoutput.h index c24e371d..c8ea0f1e 100644 --- a/quanta/messages/messageoutput.h +++ b/quanta/messages/messageoutput.h @@ -32,7 +32,7 @@ weblint output class MessageOutput : public TQListBox { Q_OBJECT - TQ_OBJECT + public: MessageOutput(TQWidget *parent=0, const char *name=0); ~MessageOutput(); diff --git a/quanta/parsers/parser.h b/quanta/parsers/parser.h index 37716379..d717f6f2 100644 --- a/quanta/parsers/parser.h +++ b/quanta/parsers/parser.h @@ -45,7 +45,7 @@ typedef TQMap<TQString, IncludedGroupElements> IncludedGroupElementsMap; class Parser: public TQObject { Q_OBJECT - TQ_OBJECT + public: Parser(); diff --git a/quanta/parsers/sagroupparser.h b/quanta/parsers/sagroupparser.h index 082bf3d7..ca4add8f 100644 --- a/quanta/parsers/sagroupparser.h +++ b/quanta/parsers/sagroupparser.h @@ -32,7 +32,7 @@ class SAParser; class SAGroupParser : public TQObject { Q_OBJECT - TQ_OBJECT + public: public: SAGroupParser(SAParser *parent, Document *write, Node *startNode, Node *endNode, bool synchronous, bool parsingLastNode, bool paringLastGroup); diff --git a/quanta/parsers/saparser.h b/quanta/parsers/saparser.h index 01ea34e0..463cf1b9 100644 --- a/quanta/parsers/saparser.h +++ b/quanta/parsers/saparser.h @@ -41,7 +41,7 @@ class SAGroupParser; class SAParser: public TQObject { Q_OBJECT - TQ_OBJECT + public: SAParser(); diff --git a/quanta/parts/kafka/domtreeview.h b/quanta/parts/kafka/domtreeview.h index 7c18dc60..c6c22907 100644 --- a/quanta/parts/kafka/domtreeview.h +++ b/quanta/parts/kafka/domtreeview.h @@ -38,7 +38,7 @@ class TQGridLayout; class DOMTreeView : public KListView { Q_OBJECT - TQ_OBJECT + public: DOMTreeView(TQWidget *parent, KHTMLPart *part, const char * name = 0); ~DOMTreeView(); @@ -67,7 +67,7 @@ class DOMTreeView : public KListView class KafkaDOMTreeDialog : public TQDialog { Q_OBJECT - TQ_OBJECT + public: KafkaDOMTreeDialog(TQWidget *parent = 0, KHTMLPart *part = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~KafkaDOMTreeDialog(); diff --git a/quanta/parts/kafka/htmldocumentproperties.h b/quanta/parts/kafka/htmldocumentproperties.h index 572a4586..f0f32911 100644 --- a/quanta/parts/kafka/htmldocumentproperties.h +++ b/quanta/parts/kafka/htmldocumentproperties.h @@ -45,7 +45,7 @@ public: class htmlDocumentProperties : public htmlDocumentPropertiesui { Q_OBJECT - TQ_OBJECT + public: /** * @param forceInsertionOfBasicNodes Force the insertion of the basic Nodes (HTML, BODY, HEAD, ...) if pressing OK diff --git a/quanta/parts/kafka/kafkadragobject.h b/quanta/parts/kafka/kafkadragobject.h index cc371b45..4c9a5acf 100644 --- a/quanta/parts/kafka/kafkadragobject.h +++ b/quanta/parts/kafka/kafkadragobject.h @@ -29,7 +29,7 @@ class Node; class KafkaDragObject: public TQStoredDrag { Q_OBJECT - TQ_OBJECT + public: KafkaDragObject(Node const* item, TQWidget* dragSource = 0, const char* name = 0); diff --git a/quanta/parts/kafka/kafkahtmlpart.h b/quanta/parts/kafka/kafkahtmlpart.h index 3f3e3c83..51c7c38b 100644 --- a/quanta/parts/kafka/kafkahtmlpart.h +++ b/quanta/parts/kafka/kafkahtmlpart.h @@ -46,7 +46,7 @@ class TQPopupMenu; class KafkaWidget : public KHTMLPart { Q_OBJECT - TQ_OBJECT + public: KafkaWidget(TQWidget *parent, TQWidget *widgetParent, KafkaDocument *part, const char *name = 0); diff --git a/quanta/parts/kafka/kafkasyncoptions.h b/quanta/parts/kafka/kafkasyncoptions.h index a37cd4fe..9009f6b7 100644 --- a/quanta/parts/kafka/kafkasyncoptions.h +++ b/quanta/parts/kafka/kafkasyncoptions.h @@ -25,7 +25,7 @@ class KConfig; class KafkaSyncOptions : public KafkaSyncOptionsUI { Q_OBJECT - TQ_OBJECT + public: KafkaSyncOptions( KConfig *config, TQWidget* parent = 0, const char* name = 0); diff --git a/quanta/parts/kafka/wkafkapart.h b/quanta/parts/kafka/wkafkapart.h index 32274eaf..2d03477b 100644 --- a/quanta/parts/kafka/wkafkapart.h +++ b/quanta/parts/kafka/wkafkapart.h @@ -50,7 +50,7 @@ class NodeModifsSet; class KafkaDocument : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** Returns a reference to the KafkaDocument object */ static KafkaDocument* const ref(TQWidget *parent = 0L, TQWidget *widgetParent = 0L, const char *name = 0L) diff --git a/quanta/parts/preview/whtmlpart.h b/quanta/parts/preview/whtmlpart.h index bcf0af53..432cb831 100644 --- a/quanta/parts/preview/whtmlpart.h +++ b/quanta/parts/preview/whtmlpart.h @@ -29,7 +29,7 @@ class KPopupMenu; class WHTMLPart : public KHTMLPart { Q_OBJECT - TQ_OBJECT + public: WHTMLPart(TQWidget *parentWidget = 0, const char *widgetname = 0, bool enableViewSource = false, TQObject *parent = 0, const char *name = 0, GUIProfile prof = DefaultGUI ); diff --git a/quanta/plugins/quantaplugin.h b/quanta/plugins/quantaplugin.h index e4c13822..426c07c8 100644 --- a/quanta/plugins/quantaplugin.h +++ b/quanta/plugins/quantaplugin.h @@ -39,7 +39,7 @@ class QuantaView; class QuantaPlugin : public TQObject { Q_OBJECT - TQ_OBJECT + public: QuantaPlugin(); ~QuantaPlugin(); diff --git a/quanta/plugins/quantapluginconfig.h b/quanta/plugins/quantapluginconfig.h index 9390b61e..6b5dc328 100644 --- a/quanta/plugins/quantapluginconfig.h +++ b/quanta/plugins/quantapluginconfig.h @@ -30,7 +30,7 @@ class TQString; class QuantaPluginConfig : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: QuantaPluginConfig(TQWidget *, const char *); ~QuantaPluginConfig(); diff --git a/quanta/plugins/quantaplugineditor.h b/quanta/plugins/quantaplugineditor.h index e26ad53f..3149f008 100644 --- a/quanta/plugins/quantaplugineditor.h +++ b/quanta/plugins/quantaplugineditor.h @@ -42,7 +42,7 @@ class PluginEditor; class QuantaPluginEditor : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: QuantaPluginEditor(TQWidget *, const char *); diff --git a/quanta/plugins/quantaplugininterface.h b/quanta/plugins/quantaplugininterface.h index 3e83846e..5e876a5e 100644 --- a/quanta/plugins/quantaplugininterface.h +++ b/quanta/plugins/quantaplugininterface.h @@ -38,7 +38,7 @@ class QuantaPlugin; class QuantaPluginInterface : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** * since this class is a singleton you must use this function to access it diff --git a/quanta/project/eventconfigurationdlg.h b/quanta/project/eventconfigurationdlg.h index db1933f0..9841d009 100644 --- a/quanta/project/eventconfigurationdlg.h +++ b/quanta/project/eventconfigurationdlg.h @@ -27,7 +27,7 @@ typedef TQMap<TQString, TQValueList<EventAction> > EventActions; class EventConfigurationDlg : public EventConfigurationDlgS { Q_OBJECT - TQ_OBJECT + public: EventConfigurationDlg(KActionCollection *actionCollection, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/quanta/project/eventeditordlg.h b/quanta/project/eventeditordlg.h index 8cb4f10b..697821c6 100644 --- a/quanta/project/eventeditordlg.h +++ b/quanta/project/eventeditordlg.h @@ -27,7 +27,7 @@ class KComboBox; class EventEditorDlg : public EventEditorDlgS { Q_OBJECT - TQ_OBJECT + public: EventEditorDlg(KActionCollection *actionCollection, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/quanta/project/membereditdlg.h b/quanta/project/membereditdlg.h index 2cecefb2..32d26633 100644 --- a/quanta/project/membereditdlg.h +++ b/quanta/project/membereditdlg.h @@ -25,7 +25,7 @@ class MemberEditDlg : public MemberEditDlgS { Q_OBJECT - TQ_OBJECT + public: MemberEditDlg(TQWidget *parent = 0, const char *name = 0); ~MemberEditDlg(); diff --git a/quanta/project/project.h b/quanta/project/project.h index fc88c13b..9014d16f 100644 --- a/quanta/project/project.h +++ b/quanta/project/project.h @@ -53,7 +53,7 @@ struct SubProject { class Project : public TQObject { Q_OBJECT - TQ_OBJECT + friend class ProjectPrivate; // need this because I use the signals public: diff --git a/quanta/project/projectnewfinal.h b/quanta/project/projectnewfinal.h index 67888701..654af85a 100644 --- a/quanta/project/projectnewfinal.h +++ b/quanta/project/projectnewfinal.h @@ -26,7 +26,7 @@ class ProjectNewFinal : public ProjectNewFinalS { Q_OBJECT - TQ_OBJECT + public: ProjectNewFinal(TQWidget *parent=0, const char *name=0); ~ProjectNewFinal(); diff --git a/quanta/project/projectnewgeneral.h b/quanta/project/projectnewgeneral.h index 450183d2..6a1839b7 100644 --- a/quanta/project/projectnewgeneral.h +++ b/quanta/project/projectnewgeneral.h @@ -28,7 +28,7 @@ class KURL; class ProjectNewGeneral : public ProjectNewGeneralS { Q_OBJECT - TQ_OBJECT + public: ProjectNewGeneral(TQWidget *parent=0, const char *name=0); ~ProjectNewGeneral(); diff --git a/quanta/project/projectnewlocal.h b/quanta/project/projectnewlocal.h index 4e3fd6d5..84952553 100644 --- a/quanta/project/projectnewlocal.h +++ b/quanta/project/projectnewlocal.h @@ -30,7 +30,7 @@ class CopyTo; class ProjectNewLocal : public ProjectNewLocalS { Q_OBJECT - TQ_OBJECT + public: ProjectNewLocal(TQWidget *parent=0, const char *name=0); ~ProjectNewLocal(); diff --git a/quanta/project/projectnewweb.h b/quanta/project/projectnewweb.h index 596d1fe4..fa7ff2e0 100644 --- a/quanta/project/projectnewweb.h +++ b/quanta/project/projectnewweb.h @@ -34,7 +34,7 @@ class KURL; class ProjectNewWeb : public ProjectNewWebS { Q_OBJECT - TQ_OBJECT + public: ProjectNewWeb(TQWidget *parent=0, const char *name=0); ~ProjectNewWeb(); diff --git a/quanta/project/projectprivate.h b/quanta/project/projectprivate.h index d3eeec0b..aa01a91d 100644 --- a/quanta/project/projectprivate.h +++ b/quanta/project/projectprivate.h @@ -51,7 +51,7 @@ class ProjectPrivate : public TQObject { Q_OBJECT - TQ_OBJECT + public: ProjectPrivate(Project *p); diff --git a/quanta/project/projectupload.h b/quanta/project/projectupload.h index ca136dce..473f3e7e 100644 --- a/quanta/project/projectupload.h +++ b/quanta/project/projectupload.h @@ -38,7 +38,7 @@ class UploadProfileDlgS; class ProjectUpload : public ProjectUploadS { Q_OBJECT - TQ_OBJECT + public: /** Initializes the dialog. If showOnlyProfiles is true, the dialog displays only the list of profiles, no real upload can be performed. diff --git a/quanta/project/rescanprj.h b/quanta/project/rescanprj.h index 0f0df657..bfc7b635 100644 --- a/quanta/project/rescanprj.h +++ b/quanta/project/rescanprj.h @@ -34,7 +34,7 @@ struct URLListEntry{ class RescanPrj : public RescanPrjDir { Q_OBJECT - TQ_OBJECT + public: RescanPrj(const ProjectList &p_prjFileList, const KURL& p_baseURL, const TQRegExp &p_excludeRx, TQWidget *parent=0, const char *name=0, bool modal = true); diff --git a/quanta/project/teammembersdlg.h b/quanta/project/teammembersdlg.h index 9a97ac0a..2e7d900e 100644 --- a/quanta/project/teammembersdlg.h +++ b/quanta/project/teammembersdlg.h @@ -25,7 +25,7 @@ class TeamMembersDlg : public TeamMembersDlgS { Q_OBJECT - TQ_OBJECT + public: TeamMembersDlg(TQWidget *parent = 0, const char *name = 0); diff --git a/quanta/src/document.h b/quanta/src/document.h index a7fda743..8ed866c3 100644 --- a/quanta/src/document.h +++ b/quanta/src/document.h @@ -68,7 +68,7 @@ namespace KTextEditor class Document : public TQWidget{ Q_OBJECT - TQ_OBJECT + public: Document(KTextEditor::Document *doc, diff --git a/quanta/src/dtds.h b/quanta/src/dtds.h index 4bc5f2f4..e532a934 100644 --- a/quanta/src/dtds.h +++ b/quanta/src/dtds.h @@ -49,7 +49,7 @@ struct DTDStruct; class DTDs : public TQObject { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/src/kqapp.h b/quanta/src/kqapp.h index 728a3f63..b1b5f6df 100644 --- a/quanta/src/kqapp.h +++ b/quanta/src/kqapp.h @@ -28,7 +28,7 @@ class KSplashScreen; class KSplash : public TQFrame { Q_OBJECT - TQ_OBJECT + public: KSplash(); @@ -52,7 +52,7 @@ class KQApplicationPrivate class KQApplication : public KApplication, KQApplicationPrivate { Q_OBJECT - TQ_OBJECT + public: KQApplication(); @@ -65,7 +65,7 @@ class KQApplication : public KApplication, KQApplicationPrivate class KQUniqueApplication : public KUniqueApplication, KQApplicationPrivate { Q_OBJECT - TQ_OBJECT + public: KQUniqueApplication(); diff --git a/quanta/src/quanta.h b/quanta/src/quanta.h index d0216e17..8e7ce767 100644 --- a/quanta/src/quanta.h +++ b/quanta/src/quanta.h @@ -112,7 +112,7 @@ struct ToolbarEntry; class QuantaApp : public KMdiMainFrm, public DCOPWindowManagerIf { Q_OBJECT - TQ_OBJECT + friend class QuantaInit; diff --git a/quanta/src/quanta_init.h b/quanta/src/quanta_init.h index 17bbb09a..196c723c 100644 --- a/quanta/src/quanta_init.h +++ b/quanta/src/quanta_init.h @@ -42,7 +42,7 @@ class KConfig; class QuantaInit : public TQObject { Q_OBJECT - TQ_OBJECT + public: QuantaInit(QuantaApp * quantaApp); diff --git a/quanta/src/quantadoc.h b/quanta/src/quantadoc.h index ac7069d9..e40d1fa5 100644 --- a/quanta/src/quantadoc.h +++ b/quanta/src/quantadoc.h @@ -28,7 +28,7 @@ class KURL; class QuantaDoc : public TQObject { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/src/quantaview.h b/quanta/src/quantaview.h index 3e34c43a..ebca2705 100644 --- a/quanta/src/quantaview.h +++ b/quanta/src/quantaview.h @@ -64,7 +64,7 @@ class Node; class QuantaView : public KMdiChildView { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/src/viewmanager.h b/quanta/src/viewmanager.h index 31f0a761..3e755534 100644 --- a/quanta/src/viewmanager.h +++ b/quanta/src/viewmanager.h @@ -32,7 +32,7 @@ class KMdiChildView; class ViewManager : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** Returns a reference to the viewmanager object */ static ViewManager* const ref(TQObject *parent = 0L, const char *name = 0L) diff --git a/quanta/treeviews/basetreeview.h b/quanta/treeviews/basetreeview.h index 94c4611a..19e73839 100644 --- a/quanta/treeviews/basetreeview.h +++ b/quanta/treeviews/basetreeview.h @@ -84,7 +84,7 @@ public: */ class BaseTreeBranch : public KFileTreeBranch { Q_OBJECT - TQ_OBJECT + public: BaseTreeBranch(KFileTreeView *parent, const KURL& url, @@ -134,7 +134,7 @@ public: */ class BaseTreeView : public KFileTreeView { Q_OBJECT - TQ_OBJECT + public: BaseTreeView(TQWidget *parent = 0L, const char *name = 0L); diff --git a/quanta/treeviews/doctreeview.h b/quanta/treeviews/doctreeview.h index 5be36ec5..7ce1b656 100644 --- a/quanta/treeviews/doctreeview.h +++ b/quanta/treeviews/doctreeview.h @@ -35,7 +35,7 @@ class KPopupMenu; class DocTreeView : public KListView { Q_OBJECT - TQ_OBJECT + public: DocTreeView(TQWidget *parent=0, const char *name=0); ~DocTreeView(); diff --git a/quanta/treeviews/filestreeview.h b/quanta/treeviews/filestreeview.h index 29b547f0..bdee0d0c 100644 --- a/quanta/treeviews/filestreeview.h +++ b/quanta/treeviews/filestreeview.h @@ -33,7 +33,7 @@ class KURL; class FilesTreeView : public BaseTreeView { Q_OBJECT - TQ_OBJECT + public: FilesTreeView(KConfig *config, TQWidget *parent, const char *name = 0L); diff --git a/quanta/treeviews/newtemplatedirdlg.h b/quanta/treeviews/newtemplatedirdlg.h index fb496eb8..0f6ae128 100644 --- a/quanta/treeviews/newtemplatedirdlg.h +++ b/quanta/treeviews/newtemplatedirdlg.h @@ -25,7 +25,7 @@ class NewTemplateDirDlg : public TemplateDirForm { Q_OBJECT - TQ_OBJECT + public: NewTemplateDirDlg(TQWidget *parent=0, const char *name=0); ~NewTemplateDirDlg(); diff --git a/quanta/treeviews/projecttreeview.h b/quanta/treeviews/projecttreeview.h index b5dfa5a5..ea67610a 100644 --- a/quanta/treeviews/projecttreeview.h +++ b/quanta/treeviews/projecttreeview.h @@ -52,7 +52,7 @@ public: class ProjectTreeView : public BaseTreeView { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/quanta/treeviews/scripttreeview.h b/quanta/treeviews/scripttreeview.h index d09cdf60..9914c622 100644 --- a/quanta/treeviews/scripttreeview.h +++ b/quanta/treeviews/scripttreeview.h @@ -41,7 +41,7 @@ */ class ScriptTreeView : public BaseTreeView { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/treeviews/servertreeview.h b/quanta/treeviews/servertreeview.h index 5c36771b..02213bee 100644 --- a/quanta/treeviews/servertreeview.h +++ b/quanta/treeviews/servertreeview.h @@ -59,7 +59,7 @@ public: class ServerTreeView : public BaseTreeView { Q_OBJECT - TQ_OBJECT + public: ServerTreeView(KConfig *config, TQWidget *parent, const KURL &url, const char *name = 0L); diff --git a/quanta/treeviews/structtreeview.h b/quanta/treeviews/structtreeview.h index 2087f3fc..a13261fa 100644 --- a/quanta/treeviews/structtreeview.h +++ b/quanta/treeviews/structtreeview.h @@ -40,7 +40,7 @@ struct DTDStruct; class StructTreeView : public KListView { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/quanta/treeviews/tagattributetree.h b/quanta/treeviews/tagattributetree.h index c36c3406..d91135da 100644 --- a/quanta/treeviews/tagattributetree.h +++ b/quanta/treeviews/tagattributetree.h @@ -33,7 +33,7 @@ class TQGridLayout; class EditableTree : public KListView { Q_OBJECT - TQ_OBJECT + public: EditableTree(TQWidget *parent = 0, const char *name = 0); @@ -56,7 +56,7 @@ protected: class DualEditableTree : public EditableTree { Q_OBJECT - TQ_OBJECT + public: DualEditableTree(TQWidget *parent = 0, const char *name = 0); virtual ~DualEditableTree(); @@ -83,7 +83,7 @@ private: class TagAttributeTree : public EditableTree { Q_OBJECT - TQ_OBJECT + public: TagAttributeTree(TQWidget *parent=0, const char *name=0); @@ -116,7 +116,7 @@ private: class EnhancedTagAttributeTree : public TQWidget { Q_OBJECT - TQ_OBJECT + public: EnhancedTagAttributeTree(TQWidget *parent = 0, const char *name = 0); virtual ~EnhancedTagAttributeTree(); diff --git a/quanta/treeviews/templatestreeview.h b/quanta/treeviews/templatestreeview.h index 017d3c06..075c9ba7 100644 --- a/quanta/treeviews/templatestreeview.h +++ b/quanta/treeviews/templatestreeview.h @@ -39,7 +39,7 @@ public: class TemplatesTreeView : public BaseTreeView { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/treeviews/uploadtreeview.h b/quanta/treeviews/uploadtreeview.h index 56f4bff0..8d9edfbb 100644 --- a/quanta/treeviews/uploadtreeview.h +++ b/quanta/treeviews/uploadtreeview.h @@ -31,7 +31,7 @@ class KFileItem; class UploadTreeView : public KListView { Q_OBJECT - TQ_OBJECT + public: UploadTreeView( TQWidget *parent, const char *name=0L ); ~UploadTreeView(); diff --git a/quanta/utility/myprocess.h b/quanta/utility/myprocess.h index 13820fb5..0b530af2 100644 --- a/quanta/utility/myprocess.h +++ b/quanta/utility/myprocess.h @@ -21,7 +21,7 @@ class MyProcess:public KProcess { Q_OBJECT - TQ_OBJECT + public: MyProcess(); diff --git a/quanta/utility/newstuff.h b/quanta/utility/newstuff.h index f504accf..1975f998 100644 --- a/quanta/utility/newstuff.h +++ b/quanta/utility/newstuff.h @@ -32,7 +32,7 @@ class KURL; class QNewDTEPStuff: public KNewStuffSecure { Q_OBJECT - TQ_OBJECT + public: QNewDTEPStuff(const TQString &type, TQWidget *parentWidget=0) @@ -51,7 +51,7 @@ Makes possible downloading and installing a Toolbar resource files from a server class QNewToolbarStuff: public KNewStuffSecure { Q_OBJECT - TQ_OBJECT + public: QNewToolbarStuff(const TQString &type, TQWidget *parentWidget=0); @@ -72,7 +72,7 @@ Makes possible downloading and installing a template resource files from a serve class QNewTemplateStuff: public KNewStuffSecure { Q_OBJECT - TQ_OBJECT + public: QNewTemplateStuff(const TQString &type, TQWidget *parentWidget=0); @@ -93,7 +93,7 @@ Makes possible downloading and installing a script resource files from a server. class QNewScriptStuff: public KNewStuffSecure { Q_OBJECT - TQ_OBJECT + public: QNewScriptStuff(const TQString &type, TQWidget *parentWidget=0) @@ -112,7 +112,7 @@ Makes possible downloading and installing a documentation resource files from a class QNewDocStuff: public KNewStuffSecure { Q_OBJECT - TQ_OBJECT + public: QNewDocStuff(const TQString &type, TQWidget *parentWidget=0) diff --git a/quanta/utility/qpevents.h b/quanta/utility/qpevents.h index 6d7372a2..6b3638ae 100644 --- a/quanta/utility/qpevents.h +++ b/quanta/utility/qpevents.h @@ -53,7 +53,7 @@ typedef TQMap<TQString, TQValueList<EventAction> > EventActions; class QPEvents : public TQObject { Q_OBJECT - TQ_OBJECT + public: static QPEvents* const ref(TQObject *parent = 0L) { diff --git a/quanta/utility/quantabookmarks.h b/quanta/utility/quantabookmarks.h index fa9f00cd..83f30aa6 100644 --- a/quanta/utility/quantabookmarks.h +++ b/quanta/utility/quantabookmarks.h @@ -43,7 +43,7 @@ class TQMenuData; class QuantaBookmarks : public TQObject { Q_OBJECT - TQ_OBJECT + public: enum Sorting { Position, Creation }; diff --git a/quanta/utility/tagaction.h b/quanta/utility/tagaction.h index b846480d..62a751d2 100644 --- a/quanta/utility/tagaction.h +++ b/quanta/utility/tagaction.h @@ -47,7 +47,7 @@ class NodeSelection; class TagAction : public KToggleAction { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/quanta/utility/tagactionset.h b/quanta/utility/tagactionset.h index 217a92c8..19b06fb7 100644 --- a/quanta/utility/tagactionset.h +++ b/quanta/utility/tagactionset.h @@ -38,7 +38,7 @@ class NodeModifsSet; class TagActionSetAbstract : public TQObject { Q_OBJECT - TQ_OBJECT + public: TagActionSetAbstract(TQObject *parent = 0, const char *name = 0); virtual ~TagActionSetAbstract(); @@ -67,7 +67,7 @@ private: class TagActionSet : public TagActionSetAbstract { Q_OBJECT - TQ_OBJECT + public: TagActionSet(TQObject *parent = 0, const char *name = 0); virtual ~TagActionSet() {} @@ -96,7 +96,7 @@ private: class TableTagActionSet : public TagActionSetAbstract { Q_OBJECT - TQ_OBJECT + public: TableTagActionSet(TQObject *parent = 0, const char *name = 0); virtual ~TableTagActionSet() diff --git a/quanta/utility/toolbartabwidget.h b/quanta/utility/toolbartabwidget.h index 7fd47031..24d09e36 100644 --- a/quanta/utility/toolbartabwidget.h +++ b/quanta/utility/toolbartabwidget.h @@ -27,7 +27,7 @@ class KToolBar; class ToolbarTabWidget: public TQTabWidget { Q_OBJECT - TQ_OBJECT + public: TQWidgetStack *m_widgetStack; @@ -85,7 +85,7 @@ private: class QuantaToolBar: public KToolBar { Q_OBJECT - TQ_OBJECT + public: QuantaToolBar (TQWidget *parent, const char *name=0, bool honor_style=FALSE, bool readConfig=TRUE); |