diff options
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; } |