summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2015-04-29 21:03:20 +0000
committerMarc Jeanmougin <mc@M0nst3r.bouyguesbox.fr>2015-04-29 21:03:20 +0000
commit71fcf846f0cb03e8f73ef72f1174b7e05f03d1c0 (patch)
treedcaaac56217eb5da334ab420f5e791cf7eb70f23 /src
parentupdated with trunk (diff)
downloadinkscape-71fcf846f0cb03e8f73ef72f1174b7e05f03d1c0.tar.gz
inkscape-71fcf846f0cb03e8f73ef72f1174b7e05f03d1c0.zip
corrected test file
(bzr r13922.1.20)
Diffstat (limited to 'src')
-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";