From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kode/kwsdl/schema/attribute.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kode/kwsdl/schema/attribute.cpp') diff --git a/kode/kwsdl/schema/attribute.cpp b/kode/kwsdl/schema/attribute.cpp index 9be9be79..5637f35c 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; } -- cgit v1.2.3