diff options
author | Andras Timar <andras.timar@collabora.com> | 2014-12-02 11:54:43 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-12-02 12:00:41 +0100 |
commit | c3d913724380eb76410dc0c792e9a307bbb24ca7 (patch) | |
tree | 020b43c2a694034c5d572ef0349acf3d62614e57 | |
parent | aefeef36fdd536bfc8b1038e14d552db8c60c70d (diff) |
fdo#68684 export more numbering types correctly into HTML
Change-Id: I6f1df02764f271143749ffbaeb4fc988b2f72f26
-rw-r--r-- | sw/source/filter/html/htmlnumwriter.cxx | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/sw/source/filter/html/htmlnumwriter.cxx b/sw/source/filter/html/htmlnumwriter.cxx index 34f4528704d4..de244644fe68 100644 --- a/sw/source/filter/html/htmlnumwriter.cxx +++ b/sw/source/filter/html/htmlnumwriter.cxx @@ -228,10 +228,20 @@ Writer& OutHTML_NumBulListStart( SwHTMLWriter& rWrt, sal_Char cType = 0; switch( eType ) { - case SVX_NUM_CHARS_UPPER_LETTER: cType = 'A'; break; - case SVX_NUM_CHARS_LOWER_LETTER: cType = 'a'; break; - case SVX_NUM_ROMAN_UPPER: cType = 'I'; break; - case SVX_NUM_ROMAN_LOWER: cType = 'i'; break; + case SVX_NUM_CHARS_UPPER_LETTER: + case SVX_NUM_CHARS_UPPER_LETTER_N: + cType = 'A'; + break; + case SVX_NUM_CHARS_LOWER_LETTER: + case SVX_NUM_CHARS_LOWER_LETTER_N: + cType = 'a'; + break; + case SVX_NUM_ROMAN_UPPER: + cType = 'I'; + break; + case SVX_NUM_ROMAN_LOWER: + cType = 'i'; + break; } if( cType ) { |