summaryrefslogtreecommitdiffstats
path: root/src/document-subset.cpp
diff options
context:
space:
mode:
authorAbhishek Sharma Public <spyzerdotabhishek0at-signgmaildotcom>2010-07-12 16:36:46 +0000
committerAbhishek Sharma Public <spyzerdotabhishek0at-signgmaildotcom>2010-07-12 16:36:46 +0000
commit6cc35b45eab6422a6b6f67d621aa259a0a73786f (patch)
treedf398a765e8fcee6d5455270544cafb197651c42 /src/document-subset.cpp
parentC++ification of SPObject continued along with the onset of XML Privatisation.... (diff)
downloadinkscape-6cc35b45eab6422a6b6f67d621aa259a0a73786f.tar.gz
inkscape-6cc35b45eab6422a6b6f67d621aa259a0a73786f.zip
SPObject c++ification finalized along with the beginning of XML Privatisation tweaks
(bzr r9546.1.6)
Diffstat (limited to 'src/document-subset.cpp')
-rw-r--r--src/document-subset.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/document-subset.cpp b/src/document-subset.cpp
index 1988865d1..a25205db9 100644
--- a/src/document-subset.cpp
+++ b/src/document-subset.cpp
@@ -60,7 +60,7 @@ struct DocumentSubset::Relations : public GC::Managed<GC::ATOMIC>,
while ( first != last ) {
Siblings::const_iterator mid = first + ( last - first + 1 ) / 2;
- int pos = sp_object_compare_position(*mid, obj);
+ int pos = sp_object_compare_position(*mid,obj);
if ( pos < 0 ) {
first = mid;
} else if ( pos > 0 ) {
@@ -76,7 +76,7 @@ struct DocumentSubset::Relations : public GC::Managed<GC::ATOMIC>,
if ( first == last ) {
// compare to the single possiblity left
- int pos = sp_object_compare_position(*last, obj);
+ int pos = sp_object_compare_position(*last,obj);
if ( pos < 0 ) {
last++;
}