summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/enum.h
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-06-05 09:01:40 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-06-05 09:01:40 +0000
commit4908941a2d90b79174f82fe8b025ad640d2abb58 (patch)
tree8827802031f95bb70d5d5cbf286f07e9a1949df9 /src/live_effects/parameter/enum.h
parentAdd paramType() method to LPE parameter classes (diff)
downloadinkscape-4908941a2d90b79174f82fe8b025ad640d2abb58.tar.gz
inkscape-4908941a2d90b79174f82fe8b025ad640d2abb58.zip
Rename param_writeSVGValue() --> param_getSVGValue() since the method doesn't actually write to SVG but only returns a ready-to-write string
(bzr r5817)
Diffstat (limited to 'src/live_effects/parameter/enum.h')
-rw-r--r--src/live_effects/parameter/enum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/parameter/enum.h b/src/live_effects/parameter/enum.h
index a3df91d64..72543fd92 100644
--- a/src/live_effects/parameter/enum.h
+++ b/src/live_effects/parameter/enum.h
@@ -63,7 +63,7 @@ public:
return true;
};
- gchar * param_writeSVGValue() const {
+ gchar * param_getSVGValue() const {
gchar * str = g_strdup( enumdataconv->get_key(value).c_str() );
return str;
};