diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
commit | 4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch) | |
tree | b0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kompare/interfaces/kompareinterface.h | |
parent | 1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff) | |
download | tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kompare/interfaces/kompareinterface.h')
-rw-r--r-- | kompare/interfaces/kompareinterface.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kompare/interfaces/kompareinterface.h b/kompare/interfaces/kompareinterface.h index b9c0fcda..37fabe9f 100644 --- a/kompare/interfaces/kompareinterface.h +++ b/kompare/interfaces/kompareinterface.h @@ -4,8 +4,8 @@ #ifndef _KOMPARE_INTERFACE_H #define _KOMPARE_INTERFACE_H -#include <qstring.h> -#include <qstringlist.h> +#include <tqstring.h> +#include <tqstringlist.h> #include <kdemacros.h> class KConfig; @@ -32,7 +32,7 @@ public: /** * Open and parse the supplied diff output */ - virtual bool openDiff( const QString& diffOutput ) = 0; + virtual bool openDiff( const TQString& diffOutput ) = 0; /** * Open and parse the diff3 file at url. @@ -42,7 +42,7 @@ public: /** * Open and parse the supplied diff3 output */ - virtual bool openDiff3( const QString& diff3Output ) = 0; + virtual bool openDiff3( const TQString& diff3Output ) = 0; /** * Compare, with diff, source with destination, can also be used if you dont @@ -80,7 +80,7 @@ public: /** * This will set the encoding to use for all files that are read or for the diffoutput */ - virtual void setEncoding( const QString& encoding ); + virtual void setEncoding( const TQString& encoding ); public: /** @@ -99,7 +99,7 @@ public: protected: // Add all variables to the KompareInterfacePrivate class and access them through the kip pointer KompareInterfacePrivate* kip; - QString m_encoding; + TQString m_encoding; }; #endif /* _KOMPARE_INTERFACE_H */ |