diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kode/kwsdl/schema/attribute.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kode/kwsdl/schema/attribute.h')
-rw-r--r-- | kode/kwsdl/schema/attribute.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kode/kwsdl/schema/attribute.h b/kode/kwsdl/schema/attribute.h index 62db99d7d..d7bdf364e 100644 --- a/kode/kwsdl/schema/attribute.h +++ b/kode/kwsdl/schema/attribute.h @@ -23,43 +23,43 @@ #ifndef SCHEMA_ATTRIBUTE_H #define SCHEMA_ATTRIBUTE_H -#include <qstring.h> -#include <qvaluelist.h> +#include <tqstring.h> +#include <tqvaluelist.h> namespace Schema { class Attribute { public: - typedef QValueList<Attribute> List; - typedef QValueList<Attribute*> PtrList; + typedef TQValueList<Attribute> List; + typedef TQValueList<Attribute*> PtrList; Attribute(); - Attribute( const QString &name, int type, bool qualified = false, - const QString &defaultValue = QString(), - const QString &fixedValue = QString(), + Attribute( const TQString &name, int type, bool qualified = false, + const TQString &defaultValue = TQString(), + const TQString &fixedValue = TQString(), bool use = true ); - QString name() const; + TQString name() const; int type() const; - void setTypeName( const QString &typeName ); - QString typeName() const; + void setTypeName( const TQString &typeName ); + TQString typeName() const; - QString defaultValue() const; - QString fixedValue() const; + TQString defaultValue() const; + TQString fixedValue() const; bool isQualified() const; bool isUsed() const; private: - QString mName; + TQString mName; int mType; - QString mTypeName; + TQString mTypeName; bool mQualified; - QString mDefaultValue; - QString mFixedValue; + TQString mDefaultValue; + TQString mFixedValue; bool mUse; }; |