summaryrefslogtreecommitdiffstats
path: root/lib/interfaces/extensions/kdevsourceformatter.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /lib/interfaces/extensions/kdevsourceformatter.h
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz
tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/interfaces/extensions/kdevsourceformatter.h')
-rw-r--r--lib/interfaces/extensions/kdevsourceformatter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/interfaces/extensions/kdevsourceformatter.h b/lib/interfaces/extensions/kdevsourceformatter.h
index d15dfbae..5ca33079 100644
--- a/lib/interfaces/extensions/kdevsourceformatter.h
+++ b/lib/interfaces/extensions/kdevsourceformatter.h
@@ -54,16 +54,16 @@ public:
@param parent The parent object for the plugin. Parent object must implement @ref KDevApi
interface. Otherwise the plugin will not be constructed.
@param name The internal name which identifies the plugin.*/
- KDevSourceFormatter(const KDevPluginInfo *info, QObject* parent, const char* name)
+ KDevSourceFormatter(const KDevPluginInfo *info, TQObject* parent, const char* name)
:KDevPlugin(info, parent, name) {}
/**Formats the source.
@param text A string with a code.
@return The formatted string.*/
- virtual QString formatSource(const QString text) = 0;
+ virtual TQString formatSource(const TQString text) = 0;
/**@return The indentation string. For example, tab or four spaces can be returned.*/
- virtual QString indentString() const = 0;
+ virtual TQString indentString() const = 0;
};
#endif