specify font size metric (pt)

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

View File

@ -127,7 +127,7 @@ public class WordToHtmlUtils extends AbstractWordUtils
public static void addFontSize( final int fontSize, StringBuilder style )
{
style.append( "font-size: " + fontSize + "; " );
style.append( "font-size: " + fontSize + "pt; " );
}
public static void addIndent( Paragraph paragraph, StringBuilder style )