summaryrefslogtreecommitdiffstats
path: root/src/path-chemistry.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2018-03-03 00:12:41 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2018-03-26 17:48:34 +0000
commit95b1c7b549605d7c6ce6623cc4cd121ed7c51a64 (patch)
tree1c38b4fe6baabbf45c55e0929516dd825f7d6847 /src/path-chemistry.cpp
parentAllow building with USE_PANGO_WIN32. (diff)
downloadinkscape-95b1c7b549605d7c6ce6623cc4cd121ed7c51a64.tar.gz
inkscape-95b1c7b549605d7c6ce6623cc4cd121ed7c51a64.zip
Base LPE refactor
Diffstat (limited to 'src/path-chemistry.cpp')
-rw-r--r--src/path-chemistry.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/path-chemistry.cpp b/src/path-chemistry.cpp
index 2eb471bb3..7d5346f31 100644
--- a/src/path-chemistry.cpp
+++ b/src/path-chemistry.cpp
@@ -123,7 +123,7 @@ ObjectSet::combine(bool skip_undo)
did = true;
}
- SPCurve *c = path->get_curve_for_edit();
+ SPCurve *c = path->getCurveForEdit();
if (first == NULL) { // this is the topmost path
first = item;
parent = first->getRepr()->parent();
@@ -225,7 +225,7 @@ ObjectSet::breakApart(bool skip_undo)
continue;
}
- SPCurve *curve = path->get_curve_for_edit();
+ SPCurve *curve = path->getCurveForEdit();
if (curve == NULL) {
continue;
}
@@ -650,7 +650,7 @@ ObjectSet::pathReverse()
did = true;
- SPCurve *rcurve = path->get_curve_reference()->create_reverse();
+ SPCurve *rcurve = path->getCurveForEdit(true)->create_reverse();
gchar *str = sp_svg_write_path(rcurve->get_pathvector());
if ( path->hasPathEffectRecursive() ) {