summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpegroupbbox.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-08-01 19:15:16 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-08-01 19:15:16 +0000
commita45a0820bec31c1611da0c8de6ecfec218d2419a (patch)
tree39a36f8323928a800aebc7266cce7e3bfadec308 /src/live_effects/lpegroupbbox.cpp
parentreplace matrix division code. (diff)
downloadinkscape-a45a0820bec31c1611da0c8de6ecfec218d2419a.tar.gz
inkscape-a45a0820bec31c1611da0c8de6ecfec218d2419a.zip
2geomify a lot of NR::Points to Geom::Point
(bzr r6513)
Diffstat (limited to 'src/live_effects/lpegroupbbox.cpp')
-rw-r--r--src/live_effects/lpegroupbbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpegroupbbox.cpp b/src/live_effects/lpegroupbbox.cpp
index 1ec443a5f..e9cf05099 100644
--- a/src/live_effects/lpegroupbbox.cpp
+++ b/src/live_effects/lpegroupbbox.cpp
@@ -32,7 +32,7 @@ GroupBBoxEffect::original_bbox(SPLPEItem *lpeitem, bool absolute)
NR::Maybe<NR::Rect> itemBBox = item->getBounds(transform, SPItem::GEOMETRIC_BBOX);
// NR to Geom glue
- Geom::Rect geomBBox = Geom::Rect(itemBBox->min().to_2geom(), itemBBox->max().to_2geom());
+ Geom::Rect geomBBox = Geom::Rect(itemBBox->min(), itemBBox->max());
boundingbox_X = geomBBox[Geom::X];
boundingbox_Y = geomBBox[Geom::Y];
}