Code

Remove unused flag from PathString.
authorjaspervdg <jaspervdg@users.sourceforge.net>
Fri, 21 Mar 2008 10:10:29 +0000 (10:10 +0000)
committerjaspervdg <jaspervdg@users.sourceforge.net>
Fri, 21 Mar 2008 10:10:29 +0000 (10:10 +0000)
src/svg/path-string.cpp
src/svg/path-string.h

index 4cf790a9b509827ff4b857715a61a356db3913e1..3006508111a02f3b9742e484cfe9e0172930784e 100644 (file)
@@ -17,7 +17,6 @@
 
 Inkscape::SVG::PathString::PathString() :
     allow_relative_coordinates(0 != prefs_get_int_attribute("options.svgoutput", "allowrelativecoordinates", 1)),
-    allow_shorthands(0 != prefs_get_int_attribute("options.svgoutput", "allowshorthands", 1)),
     force_repeat_commands(0 != prefs_get_int_attribute("options.svgoutput", "forcerepeatcommands", 0))
 {}
 
index e90e110486780550a80de5754592cf1d67891d03..bc0628a5abaad5c439601275ccb805eed9e5907c 100644 (file)
@@ -197,7 +197,6 @@ private:
     NR::Point _current_point;
 
     bool const allow_relative_coordinates;
-    bool const allow_shorthands;
     bool const force_repeat_commands;
 };