summaryrefslogtreecommitdiff
path: root/src/modules/xml
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-15 16:48:03 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-15 16:48:03 +0000
commit3744b5146df8530d3b43a972d58223cb3ffb533c (patch)
treea322ca4d0f8eda203cdb618071399c2d0a30e841 /src/modules/xml
parentb92b010ae92db3f61a20ff2f579a5b717cfc8168 (diff)
- fixes for the plugins options' dialog;
- code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@430 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/xml')
-rw-r--r--src/modules/xml/xmlParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/xml/xmlParser.cpp b/src/modules/xml/xmlParser.cpp
index c718b9c46c..c596d99c3f 100644
--- a/src/modules/xml/xmlParser.cpp
+++ b/src/modules/xml/xmlParser.cpp
@@ -2261,7 +2261,7 @@ XMLNode& XMLNode::operator=( const XMLNode& A )
{
if (d) { d->ref_count--; emptyTheNode(0); }
d=A.d;
- if (d) (d->ref_count) ++ ;
+ if (d) (d->ref_count) ++;
}
return *this;
}
@@ -2270,7 +2270,7 @@ XMLNode::XMLNode(const XMLNode &A)
{
// shallow copy
d=A.d;
- if (d) (d->ref_count)++ ;
+ if (d) (d->ref_count)++;
}
XMLNode XMLNode::deepCopy() const