comparison dwt/widgets/Button.d @ 123:63a09873578e

Fixed compile errors
author Jacob Carlborg <doob@me.com>
date Thu, 15 Jan 2009 23:08:54 +0100
parents 62202ce0039f
children 1a0129cab08e
comparison
equal deleted inserted replaced
122:2e671fa40eec 123:63a09873578e
77 * @see <a href="http://www.eclipse.org/swt/snippets/#button">Button snippets</a> 77 * @see <a href="http://www.eclipse.org/swt/snippets/#button">Button snippets</a>
78 * @see <a href="http://www.eclipse.org/swt/examples.php">DWT Example: ControlExample</a> 78 * @see <a href="http://www.eclipse.org/swt/examples.php">DWT Example: ControlExample</a>
79 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 79 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
80 */ 80 */
81 public class Button : Control { 81 public class Button : Control {
82
83 alias Control.setBackground setBackground;
84 alias Control.setForeground setForeground;
85
82 String text = ""; 86 String text = "";
83 Image image; 87 Image image;
84 bool grayed; 88 bool grayed;
85 89
86 /** 90 /**