summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJasper van de Gronde <jasper.vandegronde@gmail.com>2008-07-18 16:23:40 +0000
committerjaspervdg <jaspervdg@users.sourceforge.net>2008-07-18 16:23:40 +0000
commit2f17abf596c8aa2bfb79dedf626a63225471d806 (patch)
treec46110273fcbede986534ba80940ba8bfe59354f /src
parentAdd python for cxxtests (diff)
downloadinkscape-2f17abf596c8aa2bfb79dedf626a63225471d806.tar.gz
inkscape-2f17abf596c8aa2bfb79dedf626a63225471d806.zip
Removed the unused allowshorthands preference.
(bzr r6352)
Diffstat (limited to 'src')
-rw-r--r--src/preferences-skeleton.h2
-rw-r--r--src/ui/dialog/inkscape-preferences.cpp5
-rw-r--r--src/ui/dialog/inkscape-preferences.h1
3 files changed, 1 insertions, 7 deletions
diff --git a/src/preferences-skeleton.h b/src/preferences-skeleton.h
index 8cdb1fe47..5aeadaa1b 100644
--- a/src/preferences-skeleton.h
+++ b/src/preferences-skeleton.h
@@ -262,7 +262,7 @@ static char const preferences_skeleton[] =
" images=\"4278190335\"" //ff0000ff
" clips=\"16711935\"" // 00ff00ff
" masks=\"65535\"/>\n" // 0x0000ffff
-" <group id=\"svgoutput\" usenamedcolors=\"0\" numericprecision=\"8\" minimumexponent=\"-8\" inlineattrs=\"0\" indent=\"2\" allowrelativecoordinates=\"1\" allowshorthands=\"1\" forcerepeatcommands=\"0\"/>\n"
+" <group id=\"svgoutput\" usenamedcolors=\"0\" numericprecision=\"8\" minimumexponent=\"-8\" inlineattrs=\"0\" indent=\"2\" allowrelativecoordinates=\"1\" forcerepeatcommands=\"0\"/>\n"
" <group id=\"forkgradientvectors\" value=\"1\"/>\n"
" <group id=\"autosave\" enable=\"0\" interval=\"10\" path=\"\" max=\"10\"/>\n"
" <group id=\"grids\""
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp
index 1e4f7c3b5..dc11a4c2e 100644
--- a/src/ui/dialog/inkscape-preferences.cpp
+++ b/src/ui/dialog/inkscape-preferences.cpp
@@ -927,11 +927,6 @@ void InkscapePreferences::initPageSVGOutput()
_svgoutput_allowrelativecoordinates.init( _("Allow relative coordinates"), "options.svgoutput", "allowrelativecoordinates", true);
_page_svgoutput.add_line( false, "", _svgoutput_allowrelativecoordinates, "", _("If set, relative coordinates may be used in path data"), false);
- /* seems this is never used in Inkscape code
- _svgoutput_allowshorthands.init( _("Allow shorthands"), "options.svgoutput", "allowshorthands", true);
- _page_svgoutput.add_line( false, "", _svgoutput_allowshorthands, "", _(""), false);
- */
-
_svgoutput_forcerepeatcommands.init( _("Force repeat commands"), "options.svgoutput", "forcerepeatcommands", false);
_page_svgoutput.add_line( false, "", _svgoutput_forcerepeatcommands, "", _("Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead of 'L 1,2 3,4')"), false);
diff --git a/src/ui/dialog/inkscape-preferences.h b/src/ui/dialog/inkscape-preferences.h
index 289a8ecce..0407de45f 100644
--- a/src/ui/dialog/inkscape-preferences.h
+++ b/src/ui/dialog/inkscape-preferences.h
@@ -220,7 +220,6 @@ protected:
PrefCheckButton _svgoutput_inlineattrs;
PrefSpinButton _svgoutput_indent;
PrefCheckButton _svgoutput_allowrelativecoordinates;
- PrefCheckButton _svgoutput_allowshorthands;
PrefCheckButton _svgoutput_forcerepeatcommands;
PrefEntryButtonHBox _importexport_ocal_url;