]> source.dussan.org Git - poi.git/commitdiff
Fixed a small error in documentation
authorGlen Stampoultzis <glens@apache.org>
Thu, 1 May 2003 23:38:39 +0000 (23:38 +0000)
committerGlen Stampoultzis <glens@apache.org>
Thu, 1 May 2003 23:38:39 +0000 (23:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353077 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/hssf/quick-guide.xml
src/documentation/content/xdocs/trans/es/hssf/quick-guide.xml

index b193a99fb78f0c5e3120c7db7f0800d86576e979..b5203d2058d7dbd2c557a969f7e64c62785f5fa3 100644 (file)
     // create a new cell style from the workbook otherwise you can end up
     // modifying the built in style and effecting not only this cell but other cells.
     HSSFCellStyle cellStyle = wb.createCellStyle();
-    cellStyle.setDataFormat(HSSFDataFormat.getFormat("m/d/yy h:mm"));
+    cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm"));
     cell = row.createCell((short)1);
     cell.setCellValue(new Date());
     cell.setCellStyle(cellStyle);
index 371f36072f3d4441a00e29bebf03cfb3e30a8055..1d2aaf3ae439a04d749edd1c3e85ca288723fc90 100644 (file)
@@ -96,7 +96,7 @@
     // create a new cell style from the workbook otherwise you can end up
     // modifying the built in style and effecting not only this cell but other cells.
     HSSFCellStyle cellStyle = wb.createCellStyle();
-    cellStyle.setDataFormat(HSSFDataFormat.getFormat("m/d/yy h:mm"));
+    cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm"));
     cell = row.createCell((short)1);
     cell.setCellValue(new Date());
     cell.setCellStyle(cellStyle);