summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-05 12:35:22 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-05 12:35:41 +0100
commit461550cdb5b86fd3b20e6f381acb14bcccf91406 (patch)
tree43996b99d78464a202a4ee4f110afd19dd033914 /include
parentbasic: _FIND_STATIC likely not an error in SbiExprNode::GenElement() (diff)
downloadcore-461550cdb5b86fd3b20e6f381acb14bcccf91406.tar.gz
core-461550cdb5b86fd3b20e6f381acb14bcccf91406.zip
Remove unused HTMLMODE_* defines
...and turn the remaining ones into an enum. Change-Id: I2e650fe2640f2bf512f356c7881a9722faa6ce25
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/htmlmode.hxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/include/sfx2/htmlmode.hxx b/include/sfx2/htmlmode.hxx
index 952b93d9b07c..4888c48e4564 100644
--- a/include/sfx2/htmlmode.hxx
+++ b/include/sfx2/htmlmode.hxx
@@ -19,13 +19,11 @@
#ifndef INCLUDED_SFX2_HTMLMODE_HXX
#define INCLUDED_SFX2_HTMLMODE_HXX
-#define HTMLMODE_ON 0x0001
-#define HTMLMODE_PARA_DISTANCE 0x0004
-#define HTMLMODE_SOME_STYLES 0x0020 /* mind. MS IE */
-#define HTMLMODE_FULL_STYLES 0x0040 /* == SW */
-#define HTMLMODE_PARA_BLOCK 0x0100
-#define HTMLMODE_RESERVED1 0x4000
-#define HTMLMODE_RESERVED0 0x8000
+enum {
+ HTMLMODE_ON = 0x0001,
+ HTMLMODE_SOME_STYLES = 0x0020, /* mind. MS IE */
+ HTMLMODE_FULL_STYLES = 0x0040 /* == SW */
+};
#endif