]> source.dussan.org Git - poi.git/commit
Made a bit of a meal out of the Shared formula patch, some of our test cases failed...
authorJason Height <jheight@apache.org>
Thu, 27 Jul 2006 14:15:11 +0000 (14:15 +0000)
committerJason Height <jheight@apache.org>
Thu, 27 Jul 2006 14:15:11 +0000 (14:15 +0000)
commit2ece1574eb34bcb764a4dba87c174b9891cd4f6f
treec2c59e1945b9675a43f9561f055c36ebafb1d8bc
parent8cc9ba242f323c4f9c1adca50cb96b6291abe933
Made a bit of a meal out of the Shared formula patch, some of our test cases failed. Guess that is a good thing. Now working.

Committed patch provided in Bug 40024. Avik, sorry bet you to it.

Committed a patch to Bug 13249. HSSF will now raise an exception if a name is provided that is case-insensitive match to an existing name. In addition the getNameIndex now performs a case-insensitive search. This now matches excel behaviour.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@426082 13f79535-47bb-0310-9956-ffa450edef68
29 files changed:
src/java/org/apache/poi/hssf/record/SharedFormulaRecord.java
src/java/org/apache/poi/hssf/record/aggregates/FormulaRecordAggregate.java
src/java/org/apache/poi/hssf/record/aggregates/ValueRecordsAggregate.java
src/java/org/apache/poi/hssf/record/formula/AbstractFunctionPtg.java
src/java/org/apache/poi/hssf/record/formula/AreaErrPtg.java [new file with mode: 0644]
src/java/org/apache/poi/hssf/record/formula/ErrPtg.java [new file with mode: 0644]
src/java/org/apache/poi/hssf/record/formula/IntersectionPtg.java [new file with mode: 0644]
src/java/org/apache/poi/hssf/record/formula/MemAreaPtg.java [new file with mode: 0644]
src/java/org/apache/poi/hssf/record/formula/MemErrPtg.java
src/java/org/apache/poi/hssf/record/formula/PercentPtg.java [new file with mode: 0644]
src/java/org/apache/poi/hssf/record/formula/Ptg.java
src/java/org/apache/poi/hssf/record/formula/RangePtg.java [new file with mode: 0644]
src/java/org/apache/poi/hssf/usermodel/HSSFName.java
src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
src/testcases/org/apache/poi/hssf/HSSFTests.java
src/testcases/org/apache/poi/hssf/data/AreaErrPtg.xls [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/data/ErrPtg.xls [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/data/IntersectionPtg.xls [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/data/PercentPtg.xls [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/data/RangePtg.xls [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/data/UnionPtg.xls [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/aggregates/TestValueRecordsAggregate.java
src/testcases/org/apache/poi/hssf/record/formula/AbstractPtgTestCase.java [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/formula/TestAreaErrPtg.java [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/formula/TestErrPtg.java [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/formula/TestIntersectionPtg.java [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/formula/TestPercentPtg.java [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/formula/TestRangePtg.java [new file with mode: 0644]
src/testcases/org/apache/poi/hssf/record/formula/TestUnionPtg.java [new file with mode: 0644]