fix CSS error in word-to-html

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1145061 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-11 08:14:30 +00:00
parent df9d0a036e
commit 1151cd8b9e
1 changed files with 2 additions and 2 deletions

View File

@ -122,12 +122,12 @@ public class WordToHtmlUtils extends AbstractWordUtils
if ( isEmpty( fontFamily ) )
return;
style.append( "font-family: " + fontFamily );
style.append( "font-family: " + fontFamily + "; " );
}
public static void addFontSize( final int fontSize, StringBuilder style )
{
style.append( "font-size: " + fontSize );
style.append( "font-size: " + fontSize + "; " );
}
public static void addIndent( Paragraph paragraph, StringBuilder style )