diff options
author | PJ Fanning <fanningpj@apache.org> | 2018-02-22 22:32:25 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2018-02-22 22:32:25 +0000 |
commit | 7019178203de8909bf74f409e1dfcf2d461e7811 (patch) | |
tree | b466f2f699c45c36bbe91126271f02948bc238b9 /src/java/org/apache/poi/ss/util | |
parent | 05b0de574cce4c56fc862737242846df4abc2e6e (diff) | |
download | poi-7019178203de8909bf74f409e1dfcf2d461e7811.tar.gz poi-7019178203de8909bf74f409e1dfcf2d461e7811.zip |
further uptake of int methods for font lookups
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1825103 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ss/util')
-rw-r--r-- | src/java/org/apache/poi/ss/util/CellUtil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/ss/util/CellUtil.java b/src/java/org/apache/poi/ss/util/CellUtil.java index 15036761a7..ce72bd88e7 100644 --- a/src/java/org/apache/poi/ss/util/CellUtil.java +++ b/src/java/org/apache/poi/ss/util/CellUtil.java @@ -346,7 +346,7 @@ public final class CellUtil { put(properties, FILL_PATTERN, style.getFillPattern()); put(properties, FILL_FOREGROUND_COLOR, style.getFillForegroundColor()); put(properties, FILL_BACKGROUND_COLOR, style.getFillBackgroundColor()); - put(properties, FONT, style.getFontIndex()); + put(properties, FONT, style.getFontIntIndex()); put(properties, HIDDEN, style.getHidden()); put(properties, INDENTION, style.getIndention()); put(properties, LEFT_BORDER_COLOR, style.getLeftBorderColor()); |