summaryrefslogtreecommitdiffstats
path: root/src/sp-item.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2007-03-04 19:06:40 +0000
committermental <mental@users.sourceforge.net>2007-03-04 19:06:40 +0000
commit8c5b0700554cbed5ffb02f42044c2030a4e70340 (patch)
tree875e977ce1ea8f5a9f7c19e8d86ad85ca634e4a1 /src/sp-item.cpp
parentadapt code to new Maybe/bbox regime (diff)
downloadinkscape-8c5b0700554cbed5ffb02f42044c2030a4e70340.tar.gz
inkscape-8c5b0700554cbed5ffb02f42044c2030a4e70340.zip
communicate bbox type via flags for now
(bzr r2539)
Diffstat (limited to 'src/sp-item.cpp')
-rw-r--r--src/sp-item.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-item.cpp b/src/sp-item.cpp
index 2d3ab3ea3..521d2d1cc 100644
--- a/src/sp-item.cpp
+++ b/src/sp-item.cpp
@@ -713,7 +713,7 @@ NR::Maybe<NR::Rect> SPItem::getBounds(NR::Matrix const &transform,
unsigned int dkey) const
{
NRRect r;
- sp_item_invoke_bbox_full(this, &r, transform, 0, TRUE);
+ sp_item_invoke_bbox_full(this, &r, transform, type, TRUE);
if (nr_rect_d_test_empty(&r)) {
return NR::Nothing();
} else {