summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/path.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2012-01-12 21:06:16 +0000
committerJohan Engelen <goejendaagh@zonnet.nl>2012-01-12 21:06:16 +0000
commit76f0853b7d6bbe1233daa3141ce1379e2df1e934 (patch)
treecaeee88d187ec0312914f48953729d6f7f0b21d9 /src/live_effects/parameter/path.cpp
parentInitial C++ification of SPCanvas. (diff)
downloadinkscape-76f0853b7d6bbe1233daa3141ce1379e2df1e934.tar.gz
inkscape-76f0853b7d6bbe1233daa3141ce1379e2df1e934.zip
LPE: add new LPE that outputs the original path data. used to make a clone (without LPE) of a path with an LPE applied
(bzr r10874)
Diffstat (limited to 'src/live_effects/parameter/path.cpp')
-rw-r--r--src/live_effects/parameter/path.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp
index 8188ea19a..5adba9aac 100644
--- a/src/live_effects/parameter/path.cpp
+++ b/src/live_effects/parameter/path.cpp
@@ -360,8 +360,13 @@ PathParam::linked_delete(SPObject */*deleted*/)
set_new_value (_pathvector, true);
}
+void PathParam::linked_modified(SPObject *linked_obj, guint flags)
+{
+ linked_modified_callback(linked_obj, flags);
+}
+
void
-PathParam::linked_modified(SPObject *linked_obj, guint /*flags*/)
+PathParam::linked_modified_callback(SPObject *linked_obj, guint /*flags*/)
{
SPCurve *curve = NULL;
if (SP_IS_SHAPE(linked_obj)) {