summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/array.h
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-02-16 20:49:53 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-02-16 20:49:53 +0000
commit9593c78703845bfca18a3a135cbbc47cc03b54f6 (patch)
tree4616e3cb7ed134d82367726aafaaf3f312d1cbc5 /src/live_effects/parameter/array.h
parentadded knots (diff)
downloadinkscape-9593c78703845bfca18a3a135cbbc47cc03b54f6.tar.gz
inkscape-9593c78703845bfca18a3a135cbbc47cc03b54f6.zip
continuing fillet/chamfer
(bzr r13645.1.13)
Diffstat (limited to 'src/live_effects/parameter/array.h')
-rw-r--r--src/live_effects/parameter/array.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/live_effects/parameter/array.h b/src/live_effects/parameter/array.h
index ba1ed3d4e..c99777b08 100644
--- a/src/live_effects/parameter/array.h
+++ b/src/live_effects/parameter/array.h
@@ -116,19 +116,19 @@ protected:
str << nVector.first;
str << ",";
std::map<Geom::SatelliteType, gchar const *> stg = nVector.second.SatelliteTypeToGcharMap;
- str << stg[nVector.second.satellitetype()];
+ str << nVector.second.getSatelliteTypeGchar();
str << "*";
- str << nVector.second.isTime();
+ str << nVector.second.getIsTime();
str << "*";
- str << nVector.second.active();
+ str << nVector.second.getActive();
str << "*";
- str << nVector.second.hasMirror();
+ str << nVector.second.getHasMirror();
str << "*";
- str << nVector.second.hidden();
+ str << nVector.second.getHidden();
str << "*";
- str << nVector.second.size();
+ str << nVector.second.getSize();
str << "*";
- str <<nVector.second.time();
+ str <<nVector.second.getTime();
}
StorageType readsvg(const gchar * str);