]> source.dussan.org Git - poi.git/commitdiff
Fix bug #49194 - Correct text size limit for OOXML .xlsx files
authorNick Burch <nick@apache.org>
Wed, 5 May 2010 16:30:43 +0000 (16:30 +0000)
committerNick Burch <nick@apache.org>
Wed, 5 May 2010 16:30:43 +0000 (16:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@941372 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/status.xml
src/java/org/apache/poi/ss/SpreadsheetVersion.java

index 78bda68a9b30fa970fd4430d42c01890e8f77762..a4d4c462f8395e1cd46cabbfa3cc6e07df2e3523 100644 (file)
@@ -34,6 +34,7 @@
 
     <changes>
         <release version="3.7-SNAPSHOT" date="2010-??-??">
+           <action dev="POI-DEVELOPERS" type="fix">49194 - Correct text size limit for OOXML .xlsx files</action>
            <action dev="POI-DEVELOPERS" type="fix">49254 - Fix CellUtils.setFont to use the correct type internally</action>
            <action dev="POI-DEVELOPERS" type="fix">49139 - Properly support 4k big block size in POIFS</action>
            <action dev="POI-DEVELOPERS" type="fix">48936 - Avoid writing malformed CDATA blocks in sharedStrings.xml</action>
index d4edaec53f9d63927139bdf01b42583b51c80e5b..8030e02283f4865b6004555ec539e53dbe10421d 100644 (file)
@@ -36,7 +36,6 @@ public enum SpreadsheetVersion {
         * <li>The total number of available rows is 64k (2^16)</li>
         * <li>The maximum number of arguments to a function is 30</li>
         * <li>Number of conditional format conditions on a cell is 3</li>
-     * <li>Length of text cell contents is unlimited </li>
      * <li>Length of text cell contents is 32767</li>
         * </ul>
         */
@@ -51,10 +50,10 @@ public enum SpreadsheetVersion {
         * <li>The maximum number of arguments to a function is 255</li>
         * <li>Number of conditional format conditions on a cell is unlimited
         * (actually limited by available memory in Excel)</li>
-     * <li>Length of text cell contents is unlimited </li>
+     * <li>Length of text cell contents is 32767</li>
         * <ul>
         */
-       EXCEL2007(0x100000, 0x4000, 255, Integer.MAX_VALUE, Integer.MAX_VALUE);
+       EXCEL2007(0x100000, 0x4000, 255, Integer.MAX_VALUE, 32767);
 
        private final int _maxRows;
        private final int _maxColumns;