Code

fix node counting for "moveto"-only paths.
[inkscape.git] / src / lpe-tool-context.cpp
index 5f7cb02774e1219dd70019570abc3ea5a2df77df..be465e32469b1eaf08d7b63163844306dfe1848e 100644 (file)
@@ -422,7 +422,7 @@ lpetool_context_switch_mode(SPLPEToolContext *lc, Inkscape::LivePathEffect::Effe
 }
 
 void
-lpetool_get_limiting_bbox_corners(Document *document, Geom::Point &A, Geom::Point &B) {
+lpetool_get_limiting_bbox_corners(SPDocument *document, Geom::Point &A, Geom::Point &B) {
     Geom::Coord w = sp_document_width(document);
     Geom::Coord h = sp_document_height(document);
     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
@@ -452,7 +452,7 @@ lpetool_context_reset_limiting_bbox(SPLPEToolContext *lc)
     if (!prefs->getBool("/tools/lpetool/show_bbox", true))
         return;
 
-    Document *document = sp_desktop_document(lc->desktop);
+    SPDocument *document = sp_desktop_document(lc->desktop);
 
     Geom::Point A, B;
     lpetool_get_limiting_bbox_corners(document, A, B);