diff --git a/src/documentation/content/xdocs/changes.xml b/src/documentation/content/xdocs/changes.xml index fc703a38f9..86ab48719b 100644 --- a/src/documentation/content/xdocs/changes.xml +++ b/src/documentation/content/xdocs/changes.xml @@ -36,6 +36,11 @@ + 43323 - [PATCH] - Support for adding Pictures to ShapeGroups in HSLF. + 43222 - [PATCH] - Support for getting OLE object data from HSSFWorkbook. + 43247 - [PATCH] - Support for getting OLE object data from slideshows. + 43125 - [PATCH] - Support for reading EMF, WMF and PICT images via HSSFWorkbook.getAllPictures() + 43088 - [PATCH] - Fix for reading files with long cell comments and text boxes 42844 - [PATCH] - Fix for the EventUserModel and records that aren't immediately followed by their ContinueRecords 43055 - [PATCH] - Fix for saving Crystal Reports xls files when preserving nodes 43116 - [PATCH] - Fix for Escher layer handling of embeded OLE2 documents diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index f1feff1789..a5ab0905b9 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -33,6 +33,11 @@ + 43323 - [PATCH] - Support for adding Pictures to ShapeGroups in HSLF. + 43222 - [PATCH] - Support for getting OLE object data from HSSFWorkbook. + 43247 - [PATCH] - Support for getting OLE object data from slideshows. + 43125 - [PATCH] - Support for reading EMF, WMF and PICT images via HSSFWorkbook.getAllPictures() + 43088 - [PATCH] - Fix for reading files with long cell comments and text boxes 42844 - [PATCH] - Fix for the EventUserModel and records that aren't immediately followed by their ContinueRecords 43055 - [PATCH] - Fix for saving Crystal Reports xls files when preserving nodes 43116 - [PATCH] - Fix for Escher layer handling of embeded OLE2 documents diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java index def2e75a18..bf5246cb28 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java @@ -1424,6 +1424,10 @@ public class HSSFSheet /** * Adjusts the column width to fit the contents. * + * This process can be relatively slow on large sheets, so this should + * normally only be called once per column, at the end of your + * processing. + * * @param column the column index */ public void autoSizeColumn(short column) {