summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorHarri Pitkänen <hatapitk@iki.fi>2011-08-20 10:26:53 +0300
committerTor Lillqvist <tlillqvist@novell.com>2011-08-26 17:22:59 +0300
commitb4052c88e4240070623f13ab130f41a703cf7b7d (patch)
tree57508646711ee220b6c167910e9b2eb368a38fd0 /svtools
parent92a985e7c6a94ee02fd9131c4b382611f326989b (diff)
Remove HTML_CFG_MSIE_40_OLD
This export format has not been available in the UI but there were still a few references to it left in the source.
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/svtools/htmlcfg.hxx1
-rw-r--r--svtools/source/config/htmlcfg.cxx2
2 files changed, 0 insertions, 3 deletions
diff --git a/svtools/inc/svtools/htmlcfg.hxx b/svtools/inc/svtools/htmlcfg.hxx
index 26bb48a09cb0..e73a3859207b 100644
--- a/svtools/inc/svtools/htmlcfg.hxx
+++ b/svtools/inc/svtools/htmlcfg.hxx
@@ -42,7 +42,6 @@
#define HTML_CFG_MSIE 1 // Internet Explorer
#define HTML_CFG_WRITER 2 // Writer
#define HTML_CFG_NS40 3 // Netscape 4.0
-#define HTML_CFG_MSIE_40_OLD 4 // Internet Explorer 4.0 - alter Wert
#define HTML_CFG_MAX HTML_CFG_NS40
diff --git a/svtools/source/config/htmlcfg.cxx b/svtools/source/config/htmlcfg.cxx
index 5de4c38d3bf0..4818208f3113 100644
--- a/svtools/source/config/htmlcfg.cxx
+++ b/svtools/source/config/htmlcfg.cxx
@@ -166,7 +166,6 @@ void SvxHtmlOptions::Load( const Sequence< OUString >& aNames )
case 1: nExpMode = HTML_CFG_MSIE; break;
case 3: nExpMode = HTML_CFG_WRITER; break;
case 4: nExpMode = HTML_CFG_NS40; break;
- case 5: nExpMode = HTML_CFG_MSIE_40_OLD;break;
default: nExpMode = HTML_CFG_NS40; break;
}
@@ -236,7 +235,6 @@ void SvxHtmlOptions::Commit()
case HTML_CFG_MSIE: nExpMode = 1; break;
case HTML_CFG_WRITER: nExpMode = 3; break;
case HTML_CFG_NS40: nExpMode = 4; break;
- case HTML_CFG_MSIE_40_OLD: nExpMode = 5; break;
default: nExpMode = 4; break; // NS40
}