diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 16:05:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 16:05:43 -0600 |
commit | 28166400a4ac95793e5adb51721722e8656ebe4a (patch) | |
tree | 335bf692046a5d4cc10b2dc3f8beaa350c9607cb /kate/snippets | |
parent | 2e53a31f139e370203f5a947a44d8daa8addcbe9 (diff) | |
download | tdeaddons-28166400a4ac95793e5adb51721722e8656ebe4a.tar.gz tdeaddons-28166400a4ac95793e5adb51721722e8656ebe4a.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kate/snippets')
-rw-r--r-- | kate/snippets/csnippet.h | 2 | ||||
-rw-r--r-- | kate/snippets/plugin_katesnippets.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kate/snippets/csnippet.h b/kate/snippets/csnippet.h index cee992c..c341194 100644 --- a/kate/snippets/csnippet.h +++ b/kate/snippets/csnippet.h @@ -21,7 +21,7 @@ class CSnippet : public TQObject { Q_OBJECT - TQ_OBJECT + public: CSnippet(TQString sKey, TQString sValue, TQListViewItem *lvi, TQObject *parent = 0, const char *name = 0); ~CSnippet(); diff --git a/kate/snippets/plugin_katesnippets.h b/kate/snippets/plugin_katesnippets.h index 25c49a0..ef01ca6 100644 --- a/kate/snippets/plugin_katesnippets.h +++ b/kate/snippets/plugin_katesnippets.h @@ -31,7 +31,7 @@ class KatePluginSnippetsView : public CWidgetSnippets, public KXMLGUIClient { Q_OBJECT - TQ_OBJECT + friend class KatePluginSnippets; @@ -63,7 +63,7 @@ public: class KatePluginSnippets : public Kate::Plugin, Kate::PluginViewInterface { Q_OBJECT - TQ_OBJECT + public: KatePluginSnippets( TQObject* parent = 0, const char* name = 0, const TQStringList& = TQStringList() ); |