diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-02-15 23:12:00 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-02-15 23:12:00 +0000 |
| commit | 5c3350ef1281298f25c1cbcb60a66d238a417030 (patch) | |
| tree | 2d5d1ae0b310f4b8a58c6710ea5fd10cd3171458 /src/live_effects/parameter/array.h | |
| parent | update to trunk (diff) | |
| download | inkscape-5c3350ef1281298f25c1cbcb60a66d238a417030.tar.gz inkscape-5c3350ef1281298f25c1cbcb60a66d238a417030.zip | |
added knots
(bzr r13645.1.12)
Diffstat (limited to 'src/live_effects/parameter/array.h')
| -rw-r--r-- | src/live_effects/parameter/array.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/live_effects/parameter/array.h b/src/live_effects/parameter/array.h index 9f26ed3e6..ba1ed3d4e 100644 --- a/src/live_effects/parameter/array.h +++ b/src/live_effects/parameter/array.h @@ -114,20 +114,20 @@ protected: void writesvgData(SVGOStringStream &str, std::pair<int, Geom::Satellite> const &nVector) const { str << nVector.first; - str << " , "; + str << ","; std::map<Geom::SatelliteType, gchar const *> stg = nVector.second.SatelliteTypeToGcharMap; str << stg[nVector.second.satellitetype()]; - str << " * "; + str << "*"; str << nVector.second.isTime(); - str << " * "; + str << "*"; str << nVector.second.active(); - str << " * "; + str << "*"; str << nVector.second.hasMirror(); - str << " * "; + str << "*"; str << nVector.second.hidden(); - str << " * "; + str << "*"; str << nVector.second.size(); - str << " * "; + str << "*"; str <<nVector.second.time(); } |
