From: jaspervdg Date: Fri, 21 Mar 2008 10:10:29 +0000 (+0000) Subject: Remove unused flag from PathString. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d85ca554385107417c9547ff865c2345c23af18d;p=inkscape.git Remove unused flag from PathString. --- diff --git a/src/svg/path-string.cpp b/src/svg/path-string.cpp index 4cf790a9b..300650811 100644 --- a/src/svg/path-string.cpp +++ b/src/svg/path-string.cpp @@ -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)) {} diff --git a/src/svg/path-string.h b/src/svg/path-string.h index e90e11048..bc0628a5a 100644 --- a/src/svg/path-string.h +++ b/src/svg/path-string.h @@ -197,7 +197,6 @@ private: NR::Point _current_point; bool const allow_relative_coordinates; - bool const allow_shorthands; bool const force_repeat_commands; };