comparison 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
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
83 * disposing the entire TableTree. 83 * disposing the entire TableTree.
84 */ 84 */
85 bool inDispose = false; 85 bool inDispose = false;
86 86
87 static final TableTreeItem[] EMPTY_ITEMS; 87 static final TableTreeItem[] EMPTY_ITEMS;
88 static final char[][] EMPTY_TEXTS; 88 static final String[] EMPTY_TEXTS;
89 static final Image[] EMPTY_IMAGES; 89 static final Image[] EMPTY_IMAGES;
90 static final char[] ITEMID = "TableTreeItemID"; //$NON-NLS-1$ 90 static final String ITEMID = "TableTreeItemID"; //$NON-NLS-1$
91 91
92 /** 92 /**
93 * Constructs a new instance of this class given its parent 93 * Constructs a new instance of this class given its parent
94 * and a style value describing its behavior and appearance. 94 * and a style value describing its behavior and appearance.
95 * <p> 95 * <p>
789 if (!items[i].getVisible()) expandItem (items[i]); 789 if (!items[i].getVisible()) expandItem (items[i]);
790 tableItems[i] = items[i].tableItem; 790 tableItems[i] = items[i].tableItem;
791 } 791 }
792 table.setSelection(tableItems); 792 table.setSelection(tableItems);
793 } 793 }
794 public override void setToolTipText (char[] string) { 794 public override void setToolTipText (String string) {
795 super.setToolTipText(string); 795 super.setToolTipText(string);
796 table.setToolTipText(string); 796 table.setToolTipText(string);
797 } 797 }
798 798
799 /** 799 /**