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:04:31 +0100 |
commit | 37fd0802e73c991a7dcbb101fef9f12a045a5b42 (patch) | |
tree | ef4c44db43a5fee7863431fe18cf4c45874fc403 | |
parent | a3363248d97d74f077579a4a9b8891b7fe0e2c9c (diff) |
fdo#68684 export more numbering types correctly into HTML
Change-Id: I6f1df02764f271143749ffbaeb4fc988b2f72f26
(cherry picked from commit c3d913724380eb76410dc0c792e9a307bbb24ca7)
-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 ) { |