diff options
Diffstat (limited to 'kode/kwsdl/schema/element.cpp')
-rw-r--r-- | kode/kwsdl/schema/element.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kode/kwsdl/schema/element.cpp b/kode/kwsdl/schema/element.cpp index bfb745e2b..d8edbee9d 100644 --- a/kode/kwsdl/schema/element.cpp +++ b/kode/kwsdl/schema/element.cpp @@ -31,15 +31,15 @@ Element::Element() { } -Element::Element( const QString &name, int type, int minOccurs, int maxOccurs, - bool qualified, const QString &defaultValue, const QString &fixedValue ) +Element::Element( const TQString &name, int type, int minOccurs, int maxOccurs, + bool qualified, const TQString &defaultValue, const TQString &fixedValue ) : mName( name ), mType( type ), mMinOccurs( minOccurs ), mMaxOccurs( maxOccurs ), mQualified( qualified ), mDefaultValue( defaultValue ), mFixedValue( fixedValue ), mOccurrence( 0 ) { } -QString Element::name() const +TQString Element::name() const { return mName; } @@ -54,22 +54,22 @@ int Element::type() const return mType; } -void Element::setTypeName( const QString &typeName ) +void Element::setTypeName( const TQString &typeName ) { mTypeName = typeName; } -QString Element::typeName() const +TQString Element::typeName() const { return mTypeName; } -void Element::setDocumentation( const QString &documentation ) +void Element::setDocumentation( const TQString &documentation ) { mDocumentation = documentation; } -QString Element::documentation() const +TQString Element::documentation() const { return mDocumentation; } @@ -104,12 +104,12 @@ int Element::maxOccurs() const return mMaxOccurs; } -QString Element::defaultValue() const +TQString Element::defaultValue() const { return mDefaultValue; } -QString Element::fixedValue() const +TQString Element::fixedValue() const { return mFixedValue; } |