diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /kdevdesigner/interfaces/sourcetemplateiface.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-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 'kdevdesigner/interfaces/sourcetemplateiface.h')
-rw-r--r-- | kdevdesigner/interfaces/sourcetemplateiface.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdevdesigner/interfaces/sourcetemplateiface.h b/kdevdesigner/interfaces/sourcetemplateiface.h index c1dc2a74..b9c58b8d 100644 --- a/kdevdesigner/interfaces/sourcetemplateiface.h +++ b/kdevdesigner/interfaces/sourcetemplateiface.h @@ -41,7 +41,7 @@ // #include <private/qcom_p.h> -#include <qstring.h> +#include <tqstring.h> // {1b3446a4-1c71-424b-8789-1f34eb5697d8} #ifndef IID_SourceTemplate @@ -52,13 +52,13 @@ struct SourceTemplateInterface : public QFeatureListInterface { struct Source { - QString code; + TQString code; enum Type { FileName, Unnamed, Invalid } type; - QString filename; - QString extension; + TQString filename; + TQString extension; }; - virtual Source create( const QString &templ, QUnknownInterface *appIface ) = 0; - virtual QString language( const QString &templ ) const = 0; + virtual Source create( const TQString &templ, QUnknownInterface *appIface ) = 0; + virtual TQString language( const TQString &templ ) const = 0; }; |