summaryrefslogtreecommitdiffstats
path: root/lib/interfaces/extensions/kdevsourceformatter.h
diff options
context:
space:
mode:
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