ASF Bugzilla – Attachment 29639 Details for
Bug 54206
ValueRecordsAggregate.updateFormulasAfterRowShift doesn't update shared formulas
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
tested patch
patch.java (text/plain), 736 bytes, created by
Rui Baptista
on 2012-11-26 02:11:42 UTC
(
hide
)
Description:
tested patch
Filename:
MIME Type:
Creator:
Rui Baptista
Created:
2012-11-26 02:11:42 UTC
Size:
736 bytes
patch
obsolete
>org.apache.poi.hssf.record.aggregates.ValueRecordsAggregate.java > > > public void updateFormulasAfterRowShift(FormulaShifter shifter, int currentExternSheetIndex) { > ... changed from > FormulaRecord fr = ((FormulaRecordAggregate)cell).getFormulaRecord(); > Ptg[] ptgs = fr.getParsedExpression(); // needs clone() inside this getter? > if (shifter.adjustFormula(ptgs, currentExternSheetIndex)) { > fr.setParsedExpression(ptgs); > } > ... changed to > FormulaRecordAggregate fra = (FormulaRecordAggregate)cell; > Ptg[] ptgs = fra.getFormulaTokens(); // needs clone() inside this getter? > if (shifter.adjustFormula(ptgs, currentExternSheetIndex)) { > fra.setParsedExpression(ptgs); > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 54206
:
29635
|
29636
|
29637
|
29638
| 29639