summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/text.cpp
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2016-12-06 20:48:14 +0000
committerJabiertxof <jtx@jtx>2016-12-06 20:48:14 +0000
commitdcb86798cf8409035c632b6c429bc8b2f9ea84d3 (patch)
treef4b76f1c12b94b8704bf4c76620a093a4a42c62b /src/live_effects/parameter/text.cpp
parentUpdate to trunk (diff)
parentFixes for measure LPE and speed path based LPE operations (diff)
downloadinkscape-dcb86798cf8409035c632b6c429bc8b2f9ea84d3.tar.gz
inkscape-dcb86798cf8409035c632b6c429bc8b2f9ea84d3.zip
Update to trunk
(bzr r15295.1.8)
Diffstat (limited to 'src/live_effects/parameter/text.cpp')
-rw-r--r--src/live_effects/parameter/text.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/live_effects/parameter/text.cpp b/src/live_effects/parameter/text.cpp
index 0650b7e66..8cab68ad0 100644
--- a/src/live_effects/parameter/text.cpp
+++ b/src/live_effects/parameter/text.cpp
@@ -110,7 +110,10 @@ TextParam::param_readSVGValue(const gchar * strvalue)
gchar *
TextParam::param_getSVGValue() const
{
- return g_strdup(value.c_str());
+ Inkscape::SVGOStringStream os;
+ os << value;
+ gchar * str = g_strdup(os.str().c_str());
+ return str;
}
Gtk::Widget *