fixed incorrect assignment in TextObjectRecord.clone()

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@809658 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2009-08-31 16:56:22 +00:00
parent 728f88bd92
commit 006806553c

View File

@ -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;
}