comparison dwtx/jface/util/SafeRunnableDialog.d @ 43:ea8ff534f622

Fix override and super aliases
author Frank Benoit <benoit@tionex.de>
date Fri, 11 Apr 2008 01:24:25 +0200
parents cf7413989c65
children 46a6e0e6ccd4
comparison
equal deleted inserted replaced
42:4567a6f54939 43:ea8ff534f622
97 /* 97 /*
98 * (non-Javadoc) 98 * (non-Javadoc)
99 * 99 *
100 * @see dwtx.jface.dialogs.ErrorDialog#createDialogArea(dwt.widgets.Composite) 100 * @see dwtx.jface.dialogs.ErrorDialog#createDialogArea(dwt.widgets.Composite)
101 */ 101 */
102 protected Control createDialogArea(Composite parent) { 102 protected override Control createDialogArea(Composite parent) {
103 Control area = super.createDialogArea(parent); 103 Control area = super.createDialogArea(parent);
104 createStatusList(cast(Composite) area); 104 createStatusList(cast(Composite) area);
105 return area; 105 return area;
106 } 106 }
107 107
323 /* 323 /*
324 * (non-Javadoc) 324 * (non-Javadoc)
325 * 325 *
326 * @see dwtx.jface.dialogs.ErrorDialog#shouldShowDetailsButton() 326 * @see dwtx.jface.dialogs.ErrorDialog#shouldShowDetailsButton()
327 */ 327 */
328 protected bool shouldShowDetailsButton() { 328 protected override bool shouldShowDetailsButton() {
329 return true; 329 return true;
330 } 330 }
331 331
332 /** 332 /**
333 * Add the status to the receiver. 333 * Add the status to the receiver.