comparison dwt/custom/CCombo.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
157 return; 157 return;
158 } 158 }
159 if (getShell () is event.widget) { 159 if (getShell () is event.widget) {
160 getDisplay().asyncExec(new class() Runnable { 160 getDisplay().asyncExec(new class() Runnable {
161 public void run() { 161 public void run() {
162 if (isDisposed()) return; 162 if (this.outer.outer.isDisposed()) return;
163 handleFocus (DWT.FocusOut); 163 this.outer.outer.handleFocus (DWT.FocusOut);
164 } 164 }
165 }); 165 });
166 } 166 }
167 } 167 }
168 }; 168 };