summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/array.h
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2017-05-06 19:00:24 +0000
committerJabiertxof <jtx@jtx>2017-05-06 19:00:24 +0000
commit557ec6397498df157e0fd08561bede35606c7baf (patch)
tree381ceb2c011caf1bee676906369016789515bc46 /src/live_effects/parameter/array.h
parentMerge pathVectorSatellites (diff)
downloadinkscape-557ec6397498df157e0fd08561bede35606c7baf.tar.gz
inkscape-557ec6397498df157e0fd08561bede35606c7baf.zip
Fix a compiling bug found by Ede_123 on IRC
(bzr r15667)
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 10a3ea018..e65d3b55c 100644
--- a/src/live_effects/parameter/array.h
+++ b/src/live_effects/parameter/array.h
@@ -130,7 +130,7 @@ protected:
str << ",";
str << vector_data[i].angle;
str << ",";
- str << vector_data[i].steps;
+ str << static_cast<int>(vector_data[i].steps);
}
}