From: Yegor Kozlov Date: Mon, 31 Aug 2009 16:56:22 +0000 (+0000) Subject: fixed incorrect assignment in TextObjectRecord.clone() X-Git-Tag: REL_3_5-FINAL~22 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ac2041254b4b409463fa6c7f754efe054edb114e;p=poi.git fixed incorrect assignment in TextObjectRecord.clone() git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@809658 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/hssf/record/TextObjectRecord.java b/src/java/org/apache/poi/hssf/record/TextObjectRecord.java index 019aab09e8..bd3e008892 100644 --- a/src/java/org/apache/poi/hssf/record/TextObjectRecord.java +++ b/src/java/org/apache/poi/hssf/record/TextObjectRecord.java @@ -335,7 +335,7 @@ public final class TextObjectRecord extends ContinuableRecord { if (_linkRefPtg != null) { rec._unknownPreFormulaInt = _unknownPreFormulaInt; rec._linkRefPtg = _linkRefPtg.copy(); - rec._unknownPostFormulaByte = rec._unknownPostFormulaByte; + rec._unknownPostFormulaByte = _unknownPostFormulaByte; } return rec; }