summaryrefslogtreecommitdiff
path: root/src/gui/checkbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/checkbox.h')
-rw-r--r--src/gui/checkbox.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h
index 42e637fb..d519020d 100644
--- a/src/gui/checkbox.h
+++ b/src/gui/checkbox.h
@@ -31,10 +31,14 @@
*/
class CheckBox : public gcn::CheckBox {
public:
+ /**
+ * Constructor.
+ */
CheckBox(const std::string& caption, bool marked = false);
- // Inherited from Widget
-
+ /**
+ * Draws the check box, not the caption.
+ */
void drawBox(gcn::Graphics* graphics);
};