summaryrefslogtreecommitdiffstats
path: root/src/object-test.h
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-05-09 18:34:01 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-05-09 18:34:01 +0000
commit36bc16fc9772ce0271eb5ec62e2c03cb1038282e (patch)
treec13d992c952bd21bc00c393d80bfe31c3b35284e /src/object-test.h
parentprevent overflow index on a pathinfo function (diff)
parentFix Doxyfile (diff)
downloadinkscape-36bc16fc9772ce0271eb5ec62e2c03cb1038282e.tar.gz
inkscape-36bc16fc9772ce0271eb5ec62e2c03cb1038282e.zip
update to trunk
(bzr r13645.1.85)
Diffstat (limited to 'src/object-test.h')
-rw-r--r--src/object-test.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/object-test.h b/src/object-test.h
index 06363c372..4f0be3251 100644
--- a/src/object-test.h
+++ b/src/object-test.h
@@ -204,7 +204,8 @@ public:
assert(n_group != NULL);
begin = clock();
- sp_item_group_ungroup(n_group, NULL, false);
+ std::vector<SPItem*> ch;
+ sp_item_group_ungroup(n_group, ch, false);
end = clock();
std::cout << "Took " << double(end - begin) / double(CLOCKS_PER_SEC) << " seconds to ungroup a <g> with " << num_elements << " elements\n";