diff dwt/custom/TableTree.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 a59d51c12b42
line wrap: on
line diff
--- a/dwt/custom/TableTree.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/custom/TableTree.d	Mon May 05 00:12:38 2008 +0200
@@ -85,9 +85,9 @@
     bool inDispose = false;
 
     static final TableTreeItem[] EMPTY_ITEMS;
-    static final char[][] EMPTY_TEXTS;
+    static final String[] EMPTY_TEXTS;
     static final Image[] EMPTY_IMAGES;
-    static final char[] ITEMID = "TableTreeItemID"; //$NON-NLS-1$
+    static final String ITEMID = "TableTreeItemID"; //$NON-NLS-1$
 
 /**
  * Constructs a new instance of this class given its parent
@@ -791,7 +791,7 @@
     }
     table.setSelection(tableItems);
 }
-public override void setToolTipText (char[] string) {
+public override void setToolTipText (String string) {
     super.setToolTipText(string);
     table.setToolTipText(string);
 }