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.cpp | |
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.cpp')
-rw-r--r-- | kode/kwsdl/schema/attribute.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kode/kwsdl/schema/attribute.cpp b/kode/kwsdl/schema/attribute.cpp index 9be9be790..5637f35cd 100644 --- a/kode/kwsdl/schema/attribute.cpp +++ b/kode/kwsdl/schema/attribute.cpp @@ -25,8 +25,8 @@ using namespace Schema; -Attribute::Attribute( const QString &name, int type, bool qualified, - const QString &defaultValue, const QString &fixedValue, +Attribute::Attribute( const TQString &name, int type, bool qualified, + const TQString &defaultValue, const TQString &fixedValue, bool use ) : mName( name ), mType( type ), mQualified( qualified ), mDefaultValue( defaultValue ), mFixedValue( fixedValue ), @@ -39,7 +39,7 @@ Attribute::Attribute() { } -QString Attribute::name() const +TQString Attribute::name() const { return mName; } @@ -49,22 +49,22 @@ int Attribute::type() const return mType; } -void Attribute::setTypeName( const QString &typeName ) +void Attribute::setTypeName( const TQString &typeName ) { mTypeName = typeName; } -QString Attribute::typeName() const +TQString Attribute::typeName() const { return mTypeName; } -QString Attribute::defaultValue() const +TQString Attribute::defaultValue() const { return mDefaultValue; } -QString Attribute::fixedValue() const +TQString Attribute::fixedValue() const { return mFixedValue; } |