diff options
-rw-r--r-- | src/documentation/content/xdocs/status.xml | 1 | ||||
-rw-r--r-- | src/java/org/apache/poi/hssf/record/LabelSSTRecord.java | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index 8d0cb5dc94..abf8b7e4da 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -34,6 +34,7 @@ <changes> <release version="3.8-beta6" date="2012-??-??"> + <action dev="poi-developers" type="fix">52895 - show SSTIndex instead of XFIndex in LabelSSTRecord.toString()</action> <action dev="poi-developers" type="fix">52835 - Tolerate missing Count and UniqueCount attributes when parsing shared strings table in XSSF eventusermodel</action> <action dev="poi-developers" type="add">52818 - Added implementation for RANK()</action> <action dev="poi-developers" type="fix">52682 - allow setting text with trailing carriage return in HSLF</action> diff --git a/src/java/org/apache/poi/hssf/record/LabelSSTRecord.java b/src/java/org/apache/poi/hssf/record/LabelSSTRecord.java index 83667ef55f..8f279caf99 100644 --- a/src/java/org/apache/poi/hssf/record/LabelSSTRecord.java +++ b/src/java/org/apache/poi/hssf/record/LabelSSTRecord.java @@ -70,7 +70,7 @@ public final class LabelSSTRecord extends CellRecord { @Override protected void appendValueText(StringBuilder sb) { sb.append(" .sstIndex = "); - sb.append(HexDump.shortToHex(getXFIndex())); + sb.append(HexDump.shortToHex(getSSTIndex())); } @Override protected void serializeValue(LittleEndianOutput out) { |