diff dwt/custom/TableEditor.d @ 238:380bad9f6852

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents 17f8449522fd
children c0d810de7093
line wrap: on
line diff
--- a/dwt/custom/TableEditor.d	Sat Apr 26 10:01:30 2008 +0200
+++ b/dwt/custom/TableEditor.d	Mon May 05 00:42:55 2008 +0200
@@ -12,6 +12,8 @@
  *******************************************************************************/
 module dwt.custom.TableEditor;
 
+import dwt.dwthelper.utils;
+
 
 
 import dwt.DWT;
@@ -40,7 +42,7 @@
 *   TableColumn column2 = new TableColumn(table, DWT.NONE);
 *   for (int i = 0; i &lt; 10; i++) {
 *       TableItem item = new TableItem(table, DWT.NONE);
-*       item.setText(new char[][] {"item " + i, "edit this value"});
+*       item.setText(new String[] {"item " + i, "edit this value"});
 *   }
 *   column1.pack();
 *   column2.pack();