diff options
Diffstat (limited to 'kate/xmltools/plugin_katexmltools.h')
-rw-r--r-- | kate/xmltools/plugin_katexmltools.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/kate/xmltools/plugin_katexmltools.h b/kate/xmltools/plugin_katexmltools.h index 843ab15..e3a6c51 100644 --- a/kate/xmltools/plugin_katexmltools.h +++ b/kate/xmltools/plugin_katexmltools.h @@ -49,10 +49,11 @@ class PluginKateXMLTools : public Kate::Plugin, Kate::PluginViewInterface { Q_OBJECT + TQ_OBJECT public: - PluginKateXMLTools( TQObject* parent = 0, const char* name = 0, const TQStringList& = TQStringList() ); + PluginKateXMLTools( TQObject* tqparent = 0, const char* name = 0, const TQStringList& = TQStringList() ); virtual ~PluginKateXMLTools(); void addView ( Kate::MainWindow *win ); void removeView( Kate::MainWindow *win ); @@ -80,7 +81,7 @@ class PluginKateXMLTools : public Kate::Plugin, Kate::PluginViewInterface protected: - static TQStringList sortQStringList( TQStringList list ); + static TQStringList sortTQStringList( TQStringList list ); //bool eventFilter( TQObject *object, TQEvent *event ); TQString insideTag( Kate::View &kv ); @@ -136,9 +137,10 @@ class InsertElement : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - InsertElement( TQWidget *parent, const char *name ); + InsertElement( TQWidget *tqparent, const char *name ); ~InsertElement(); TQString showDialog( TQStringList &completions ); private slots: @@ -147,4 +149,4 @@ class InsertElement : public KDialogBase }; #endif // _PLUGIN_KANT_XMLTOOLS_H -// kate: space-indent on; indent-width 2; replace-tabs on; mixed-indent off; +// kate: space-indent on; indent-width 2; tqreplace-tabs on; mixed-indent off; |