-rw-r--r-- | include/opie/xmltree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opie/xmltree.h b/include/opie/xmltree.h index 7f50365..ed93c23 100644 --- a/include/opie/xmltree.h +++ b/include/opie/xmltree.h @@ -75,25 +75,25 @@ public: XMLElement *lastChild() const { return m_last; } void setTagName( const QString &tag ) { m_tag = tag; } QString tagName() const { return m_tag; } void setValue( const QString &val ) { m_value = val; } QString value() const { return m_value; } void setAttributes( const AttributeMap &attrs ) { m_attributes = attrs; } AttributeMap attributes() const { return m_attributes; } AttributeMap &attributes() { return m_attributes; } - QString attribute(const QString &)const; + QString attribute( const QString & ) const; void setAttribute( const QString &attr, const QString &value ); void save( QTextStream &stream, uint indent = 0 ); XMLElement *namedItem( const QString &name ); XMLElement *clone() const; static XMLElement *load( const QString &fileName ); private: QString m_tag; QString m_value; |