summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/array.h
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-05-14 21:52:45 +0000
committerjabiertxof <info@marker.es>2016-05-14 21:52:45 +0000
commit4c145e43f8ab8d8040fb2fa42309f7bd400f6349 (patch)
tree6f2336cd01002e50ee29f95ddf006b89c0e6fac4 /src/live_effects/parameter/array.h
parentupdate to trunk (diff)
downloadinkscape-4c145e43f8ab8d8040fb2fa42309f7bd400f6349.tar.gz
inkscape-4c145e43f8ab8d8040fb2fa42309f7bd400f6349.zip
Fixing pointwise
(bzr r13645.1.135)
Diffstat (limited to 'src/live_effects/parameter/array.h')
-rw-r--r--src/live_effects/parameter/array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/parameter/array.h b/src/live_effects/parameter/array.h
index 64d01650c..8a9d72fe3 100644
--- a/src/live_effects/parameter/array.h
+++ b/src/live_effects/parameter/array.h
@@ -51,7 +51,7 @@ public:
virtual bool param_readSVGValue(const gchar * strvalue) {
_vector.clear();
- gchar ** strarray = g_strsplit(strvalue, " | ", 0);
+ gchar ** strarray = g_strsplit(strvalue, "|", 0);
gchar ** iter = strarray;
while (*iter != NULL) {
_vector.push_back( readsvg(*iter) );