comparison dwt/custom/TreeEditor.d @ 123:63a09873578e

Fixed compile errors
author Jacob Carlborg <doob@me.com>
date Thu, 15 Jan 2009 23:08:54 +0100
parents 6337764516f1
children 07399639c0c8
comparison
equal deleted inserted replaced
122:2e671fa40eec 123:63a09873578e
122 this(){ 122 this(){
123 runnable = new class() Runnable { 123 runnable = new class() Runnable {
124 public void run() { 124 public void run() {
125 if (this.outer.outer.editor is null || this.outer.outer.editor.isDisposed()) return; 125 if (this.outer.outer.editor is null || this.outer.outer.editor.isDisposed()) return;
126 if (this.outer.outer.tree.isDisposed()) return; 126 if (this.outer.outer.tree.isDisposed()) return;
127 layout(); 127 this.outer.outer.layout();
128 this.outer.outer.editor.setVisible(true); 128 this.outer.outer.editor.setVisible(true);
129 } 129 }
130 }; 130 };
131 } 131 }
132 public void treeCollapsed(TreeEvent e) { 132 public void treeCollapsed(TreeEvent e) {