diff dwt/custom/TableEditor.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents a5afe31f5cdd
children fd9c62a2998e
line wrap: on
line diff
--- a/dwt/custom/TableEditor.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/custom/TableEditor.d	Mon May 05 00:12:38 2008 +0200
@@ -41,7 +41,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();