summaryrefslogtreecommitdiffstats
path: root/src/object-test.h
diff options
context:
space:
mode:
authorTomasz Boczkowski <penginsbacon@gmail.com>2015-05-02 09:43:24 +0000
committerTomasz Boczkowski <penginsbacon@gmail.com>2015-05-02 09:43:24 +0000
commit4ae263b8d394775ff631efaacc835346af1ffdae (patch)
tree8c54527cb2698ade852a3286e84692fc29b74ad8 /src/object-test.h
parentmerged gtk3 compile fix (diff)
parentsp-text: Whitespace cleanup (diff)
downloadinkscape-4ae263b8d394775ff631efaacc835346af1ffdae.tar.gz
inkscape-4ae263b8d394775ff631efaacc835346af1ffdae.zip
merge with trunk
(bzr r14059.1.12)
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";