diff dwt/custom/TableTreeEditor.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
line wrap: on
line diff
--- a/dwt/custom/TableTreeEditor.d	Wed Dec 31 21:01:13 2008 +0100
+++ b/dwt/custom/TableTreeEditor.d	Thu Jan 15 23:08:54 2009 +0100
@@ -118,10 +118,10 @@
         this() {
             runnable = new class() Runnable {
                 public void run() {
-                    if (editor is null || editor.isDisposed()) return;
+                    if (this.outer.outer.editor is null || this.outer.outer.editor.isDisposed()) return;
                     if (this.outer.outer.tableTree.isDisposed()) return;
-                    layout();
-                    editor.setVisible(true);
+                    this.outer.outer.layout();
+                    this.outer.outer.editor.setVisible(true);
                 }
             };
         }