summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-bounding-box.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/lpe-bounding-box.cpp')
-rw-r--r--src/live_effects/lpe-bounding-box.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-bounding-box.cpp b/src/live_effects/lpe-bounding-box.cpp
index bafd5e70e..43a60d482 100644
--- a/src/live_effects/lpe-bounding-box.cpp
+++ b/src/live_effects/lpe-bounding-box.cpp
@@ -45,7 +45,7 @@ void LPEBoundingBox::doEffect (SPCurve * curve)
p.appendNew<Geom::LineSegment>(Geom::Point(bbox->right(), bbox->bottom()));
p.appendNew<Geom::LineSegment>(Geom::Point(bbox->left(), bbox->bottom()));
p.appendNew<Geom::LineSegment>(Geom::Point(bbox->left(), bbox->top()));
- std::vector<Geom::Path> out;
+ Geom::PathVector out;
out.push_back(p);
curve->set_pathvector(out);
}