fix missing table borders in HTML in Word-to-HTML converter

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-21 04:06:36 +00:00
parent 40b9e5d383
commit c7ae9b50db
1 changed files with 4 additions and 1 deletions

View File

@ -46,6 +46,9 @@ public class WordToHtmlUtils extends AbstractWordUtils
}
style.append( ":" );
if ( borderCode.getLineWidth() < 8 )
style.append( "thin" );
else
style.append( getBorderWidth( borderCode ) );
style.append( ' ' );
style.append( getBorderType( borderCode ) );