Kaydet (Commit) c3d91372 authored tarafından Andras Timar's avatar Andras Timar

fdo#68684 export more numbering types correctly into HTML

Change-Id: I6f1df02764f271143749ffbaeb4fc988b2f72f26
üst aefeef36
...@@ -228,10 +228,20 @@ Writer& OutHTML_NumBulListStart( SwHTMLWriter& rWrt, ...@@ -228,10 +228,20 @@ Writer& OutHTML_NumBulListStart( SwHTMLWriter& rWrt,
sal_Char cType = 0; sal_Char cType = 0;
switch( eType ) switch( eType )
{ {
case SVX_NUM_CHARS_UPPER_LETTER: cType = 'A'; break; case SVX_NUM_CHARS_UPPER_LETTER:
case SVX_NUM_CHARS_LOWER_LETTER: cType = 'a'; break; case SVX_NUM_CHARS_UPPER_LETTER_N:
case SVX_NUM_ROMAN_UPPER: cType = 'I'; break; cType = 'A';
case SVX_NUM_ROMAN_LOWER: cType = 'i'; break; 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 ) if( cType )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment