diff dynamin/gui/button.d @ 63:84beb40c1665

Edit some comments.
author Jordan Miner <jminer7@gmail.com>
date Sat, 08 Aug 2009 20:35:48 -0500
parents 60832e1eef04
children 651082a9b364
line wrap: on
line diff
--- a/dynamin/gui/button.d	Sat Aug 08 20:35:20 2009 -0500
+++ b/dynamin/gui/button.d	Sat Aug 08 20:35:48 2009 -0500
@@ -172,16 +172,20 @@
 	/// This event occurs after the button has been clicked.
 	Event!(whenClicked) clicked;
 
+	///
 	this() {
 		clicked.mainHandler = &whenClicked;
 		_focusable = true;
 	}
+	///
 	this(string text) {
 		this();
 		this.text = text;
 	}
 	override Size bestSize() { return Theme.current.Button_bestSize(this); }
+	///
 	ButtonState state() { return _state; }
+	///
 	void state(ButtonState s) { _state = s; repaint(); }
 	/**
 	  * Returns true if this button should be painted as being default.