summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/xmltree.cc
Unidiff
Diffstat (limited to 'libopie2/opiecore/xmltree.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/xmltree.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/libopie2/opiecore/xmltree.cc b/libopie2/opiecore/xmltree.cc
index 27db5b3..059791b 100644
--- a/libopie2/opiecore/xmltree.cc
+++ b/libopie2/opiecore/xmltree.cc
@@ -19,4 +19,5 @@
19 19
20#include <opie2/xmltree.h>
21
20#include <qpe/stringutil.h> 22#include <qpe/stringutil.h>
21#include <opie/xmltree.h>
22 23
@@ -88,3 +89,3 @@ void XMLElement::insertAfter( XMLElement *newChild, XMLElement *refChild )
88 newChild->m_next = next; 89 newChild->m_next = next;
89 90
90 if ( next ) 91 if ( next )
@@ -97,3 +98,3 @@ QString XMLElement::attribute( const QString &attr ) const
97 if ( it == m_attributes.end() ) 98 if ( it == m_attributes.end() )
98 return QString::null; 99 return QString::null;
99 return it.data(); 100 return it.data();
@@ -121,3 +122,3 @@ void XMLElement::insertBefore( XMLElement *newChild, XMLElement *refChild )
121 refChild->m_prev = newChild; 122 refChild->m_prev = newChild;
122 123
123 newChild->m_prev = prev; 124 newChild->m_prev = prev;
@@ -283,3 +284,3 @@ XMLElement *XMLElement::namedItem( const QString &name )
283 284
284 return 0; 285 return 0;
285} 286}