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/utility | |
parent | 1179541f92513abc4cc3798ab2bb96960b3daebd (diff) | |
download | tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.tar.gz tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'quanta/utility')
-rw-r--r-- | quanta/utility/myprocess.h | 2 | ||||
-rw-r--r-- | quanta/utility/newstuff.h | 10 | ||||
-rw-r--r-- | quanta/utility/qpevents.h | 2 | ||||
-rw-r--r-- | quanta/utility/quantabookmarks.h | 2 | ||||
-rw-r--r-- | quanta/utility/tagaction.h | 2 | ||||
-rw-r--r-- | quanta/utility/tagactionset.h | 6 | ||||
-rw-r--r-- | quanta/utility/toolbartabwidget.h | 4 |
7 files changed, 14 insertions, 14 deletions
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); |