summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/array.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-06-19 01:30:10 +0000
committerjabiertxof <info@marker.es>2016-06-19 01:30:10 +0000
commit417ba16c9f42a5476045ca4f1825fff2fed518ba (patch)
tree3d3c9620ebb4b6dc6998550b353cf1825cf2f973 /src/live_effects/parameter/array.cpp
parentFixes when moves a path (diff)
downloadinkscape-417ba16c9f42a5476045ca4f1825fff2fed518ba.tar.gz
inkscape-417ba16c9f42a5476045ca4f1825fff2fed518ba.zip
Organize doeffect function
(bzr r13645.1.164)
Diffstat (limited to 'src/live_effects/parameter/array.cpp')
-rw-r--r--src/live_effects/parameter/array.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/parameter/array.cpp b/src/live_effects/parameter/array.cpp
index 28867def2..7470f54cd 100644
--- a/src/live_effects/parameter/array.cpp
+++ b/src/live_effects/parameter/array.cpp
@@ -59,7 +59,7 @@ ArrayParam<std::vector<Satellite > >::readsvg(const gchar * str)
gchar ** iter = strarray;
while (*iter != NULL) {
gchar ** strsubarray = g_strsplit(*iter, ",", 8);
- if(*strsubarray[7]){//steps always > 0
+ if (*strsubarray[7]) {//steps always > 0
Satellite *satellite = new Satellite();
satellite->setSatelliteType(g_strstrip(strsubarray[0]));
satellite->is_time = strncmp(strsubarray[1],"1",1) == 0;