diff options
author | Harri Pitkänen <hatapitk@iki.fi> | 2011-08-13 13:40:46 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-26 17:22:57 +0300 |
commit | 92a985e7c6a94ee02fd9131c4b382611f326989b (patch) | |
tree | 9d0261488e7aa9538a51cf585a4efad2ceb91ebd /cui | |
parent | d0c301bba0b483c7ffef83fe93fa9658aa10bd44 (diff) |
Remove extra #define
HTML_CFG_MSIE was an alias for HTML_CFG_MSIE_40, just use it everywhere
for clarity.
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/opthtml.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/opthtml.cxx b/cui/source/options/opthtml.cxx index a3016e6f55e0..7c1c3ef6862f 100644 --- a/cui/source/options/opthtml.cxx +++ b/cui/source/options/opthtml.cxx @@ -41,7 +41,7 @@ const sal_uInt16 aPosToExportArr[] = { HTML_CFG_HTML32, - HTML_CFG_MSIE_40, + HTML_CFG_MSIE, HTML_CFG_NS40, HTML_CFG_WRITER }; @@ -225,7 +225,7 @@ IMPL_LINK(OfaHtmlTabPage, ExportHdl_Impl, ListBox*, pBox) sal_uInt16 nExport = aPosToExportArr[ pBox->GetSelectEntryPos() ]; switch( nExport ) { - case HTML_CFG_MSIE_40: + case HTML_CFG_MSIE: case HTML_CFG_NS40 : case HTML_CFG_WRITER : aPrintExtensionCB.Enable(sal_True); |