]> source.dussan.org Git - poi.git/commitdiff
Update changelog again
authorNick Burch <nick@apache.org>
Wed, 9 Jan 2008 10:05:03 +0000 (10:05 +0000)
committerNick Burch <nick@apache.org>
Wed, 9 Jan 2008 10:05:03 +0000 (10:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@610329 13f79535-47bb-0310-9956-ffa450edef68

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

index c691408478e6768f4f32ae956b5dd71cb216a55d..7a955b303a3af8a7351a18c43ab87d76de194901 100644 (file)
@@ -36,6 +36,7 @@
 
                <!-- Don't forget to update status.xml too! -->
         <release version="3.0.2-FINAL" date="2008-??-??">
+            <action dev="POI-DEVELOPERS" type="fix">43902 - Don't consider merged regions when auto-sizing columns</action>
             <action dev="POI-DEVELOPERS" type="fix">42464 - Avoid "Expected ExpPtg to be converted from Shared to Non-Shared Formula" on large, formula heavy worksheets</action>
             <action dev="POI-DEVELOPERS" type="add">42033 - Add support for named ranges with unicode names</action>
             <action dev="POI-DEVELOPERS" type="add">34023 - When shifting rows, update formulas on that sheet to point to the new location of those rows</action>
index 6cac38bf52bdbe9f5ae9e955c0251cf4a7a8630b..6c8b47b46f1cc81f581ed37bfa3dc5a4b4fd0935 100644 (file)
@@ -33,6 +33,7 @@
        <!-- Don't forget to update changes.xml too! -->
     <changes>
         <release version="3.0.2-FINAL" date="2008-??-??">
+            <action dev="POI-DEVELOPERS" type="fix">43902 - Don't consider merged regions when auto-sizing columns</action>
             <action dev="POI-DEVELOPERS" type="fix">42464 - Avoid "Expected ExpPtg to be converted from Shared to Non-Shared Formula" on large, formula heavy worksheets</action>
             <action dev="POI-DEVELOPERS" type="add">42033 - Add support for named ranges with unicode names</action>
             <action dev="POI-DEVELOPERS" type="add">34023 - When shifting rows, update formulas on that sheet to point to the new location of those rows</action>
index d73702b6a2549dfaffe53ba6c1f6ec854250af87..d6b34b6be33bffa8028b800276ef0dc0cf5274cb 100644 (file)
@@ -106,4 +106,17 @@ public class DrawingRecord extends Record
         this.recordData = thedata;
     }
 
-}
+    public Object clone() {
+        if (recordData == null) {
+            recordData = new byte[ 0 ];
+        }
+        
+       DrawingRecord rec = new DrawingRecord();
+       rec.recordData = new byte[ recordData.length ];
+       rec.contd = new byte[ contd.length ];
+       System.arraycopy(recordData, 0, rec.recordData, 0, recordData.length);
+       System.arraycopy(contd, 0, rec.contd, 0, contd.length);
+       
+       return rec;
+    }
+}
\ No newline at end of file