diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-05 12:35:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-05 12:35:41 +0100 |
commit | 461550cdb5b86fd3b20e6f381acb14bcccf91406 (patch) | |
tree | 43996b99d78464a202a4ee4f110afd19dd033914 /include/sfx2 | |
parent | 6c820a2816ab3b90c4166ffdc532ad0a17af019b (diff) |
Remove unused HTMLMODE_* defines
...and turn the remaining ones into an enum.
Change-Id: I2e650fe2640f2bf512f356c7881a9722faa6ce25
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/htmlmode.hxx | 12 |
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 |