diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2016-05-14 21:52:45 +0000 |
|---|---|---|
| committer | jabiertxof <info@marker.es> | 2016-05-14 21:52:45 +0000 |
| commit | 4c145e43f8ab8d8040fb2fa42309f7bd400f6349 (patch) | |
| tree | 6f2336cd01002e50ee29f95ddf006b89c0e6fac4 /src/live_effects/parameter/array.h | |
| parent | update to trunk (diff) | |
| download | inkscape-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.h | 2 |
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) ); |
