]> source.dussan.org Git - poi.git/commitdiff
Simple patch from Josh from bug #44636 - fix for RefVPtg and edit-in-excel oddness
authorNick Burch <nick@apache.org>
Thu, 20 Mar 2008 10:16:15 +0000 (10:16 +0000)
committerNick Burch <nick@apache.org>
Thu, 20 Mar 2008 10:16:15 +0000 (10:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@639232 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/changes.xml
src/documentation/content/xdocs/status.xml
src/java/org/apache/poi/hssf/record/formula/RefVPtg.java

index 0f5b74ef25931554772cbc5311b6b5ac69f81614..9d335d76629159b1de7f64e5a6994f688d60853c 100644 (file)
@@ -36,6 +36,7 @@
 
                <!-- Don't forget to update status.xml too! -->
         <release version="3.1-beta1" date="2008-??-??">
+           <action dev="POI-DEVELOPERS" type="fix">44636 - Fix formula parsing of RefVPtg, which was causing #VALUE to be shown on subsequent edits</action>
            <action dev="POI-DEVELOPERS" type="fix">44627 - Improve the thread safety of POILogFactory</action>
            <action dev="POI-DEVELOPERS" type="add">30311 - Initial support for Conditional Formatting</action>
            <action dev="POI-DEVELOPERS" type="fix">44609 - Handle leading spaces in formulas, such as '= 4'</action>
index 5884c0df4b307ea47dd00cf530a25937a270aa57..d29d57ff8d29c60ffd4fe37f0bcc528229407610 100644 (file)
@@ -33,6 +33,7 @@
        <!-- Don't forget to update changes.xml too! -->
     <changes>
         <release version="3.1-beta1" date="2008-??-??">
+           <action dev="POI-DEVELOPERS" type="fix">44636 - Fix formula parsing of RefVPtg, which was causing #VALUE to be shown on subsequent edits</action>
            <action dev="POI-DEVELOPERS" type="fix">44627 - Improve the thread safety of POILogFactory</action>
            <action dev="POI-DEVELOPERS" type="add">30311 - Initial support for Conditional Formatting</action>
            <action dev="POI-DEVELOPERS" type="fix">44609 - Handle leading spaces in formulas, such as '= 4'</action>
index 8a6b2c03b4fa8352208c0c59117d8f0728bfce02..75c6348907018115fe3bb96fb1cda8e500144e93 100644 (file)
@@ -32,6 +32,7 @@ public final class RefVPtg extends ReferencePtg {
 
   public RefVPtg(int row, int column, boolean isRowRelative, boolean isColumnRelative) {
     super(row, column, isRowRelative, isColumnRelative);
+    setClass(CLASS_VALUE);
   }