diff options
Diffstat (limited to 'src/modules/xml/xmlParser.h')
-rw-r--r-- | src/modules/xml/xmlParser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/xml/xmlParser.h b/src/modules/xml/xmlParser.h index e973fcf712..a166801d7c 100644 --- a/src/modules/xml/xmlParser.h +++ b/src/modules/xml/xmlParser.h @@ -350,7 +350,7 @@ public: ~XMLNode();
XMLNode(const XMLNode &A); ///< to allow shallow/fast copy:
- XMLNode& operator=( const XMLNode& A ); ///< to allow shallow/fast copy:
+ XMLNode& operator=(const XMLNode& A); ///< to allow shallow/fast copy:
XMLNode(): d(NULL) {};
static XMLNode emptyXMLNode;
@@ -358,8 +358,8 @@ public: static XMLAttribute emptyXMLAttribute;
/** helpers for external C applications **/
- XMLNode( HXML h );
- void attach( HXML h );
+ XMLNode(HXML h);
+ void attach(HXML h);
HXML detach();
operator HXML() const { return (HXML)d; }
|