From 3744b5146df8530d3b43a972d58223cb3ffb533c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 15 Jun 2012 16:48:03 +0000 Subject: - fixes for the plugins options' dialog; - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@430 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/xml/xmlParser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/xml') 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 -- cgit v1.2.3