summaryrefslogtreecommitdiffstats
path: root/src/eraser-context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/eraser-context.cpp')
-rw-r--r--src/eraser-context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eraser-context.cpp b/src/eraser-context.cpp
index 382a50edc..d82d7ea89 100644
--- a/src/eraser-context.cpp
+++ b/src/eraser-context.cpp
@@ -739,7 +739,7 @@ set_to_accumulated(SPEraserContext *dc)
Inkscape::XML::Document *xml_doc = sp_document_repr_doc(desktop->doc());
SPItem* acid = SP_ITEM(desktop->doc()->getObjectByRepr(dc->repr));
- boost::optional<Geom::Rect> eraserBbox = to_2geom(acid->getBounds(Geom::identity()));
+ boost::optional<Geom::Rect> eraserBbox = acid->getBounds(Geom::identity());
Geom::Rect bounds = (*eraserBbox) * desktop->doc2dt();
std::vector<SPItem*> remainingItems;
GSList* toWorkOn = 0;
@@ -761,7 +761,7 @@ set_to_accumulated(SPEraserContext *dc)
for (GSList *i = toWorkOn ; i ; i = i->next ) {
SPItem *item = SP_ITEM(i->data);
if ( eraserMode ) {
- boost::optional<Geom::Rect> bbox = to_2geom(item->getBounds(Geom::identity()));
+ boost::optional<Geom::Rect> bbox = item->getBounds(Geom::identity());
if (bbox && bbox->intersects(*eraserBbox)) {
Inkscape::XML::Node* dup = dc->repr->duplicate(xml_doc);
dc->repr->parent()->appendChild(dup);