aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-06-04 10:23:55 +0200
committerJoel Bodenmann <joel@unormal.org>2013-06-04 10:23:55 +0200
commiteebecad9f7995dacf3f7c053e3d6b42617ec7294 (patch)
treeeb3194283497f091ef1b30435303dcdc0e52da81
parentf1a974e83e50ca3ad3f4a25cd0a64cb5cc15472e (diff)
downloaduGFX-eebecad9f7995dacf3f7c053e3d6b42617ec7294.tar.gz
uGFX-eebecad9f7995dacf3f7c053e3d6b42617ec7294.tar.bz2
uGFX-eebecad9f7995dacf3f7c053e3d6b42617ec7294.zip
checkbox cleanup
-rw-r--r--include/gwin/checkbox.h6
-rw-r--r--src/gwin/checkbox.c2
2 files changed, 2 insertions, 6 deletions
diff --git a/include/gwin/checkbox.h b/include/gwin/checkbox.h
index c0d8e90f..1bbdc89b 100644
--- a/include/gwin/checkbox.h
+++ b/include/gwin/checkbox.h
@@ -12,7 +12,7 @@
* @defgroup Checkbox Checkbox
* @ingroup GWIN
*
- * @details GWIN allows it to easily create a group of checkbox buttons.
+ * @details GWIN allows it to easily create checkboxes.
*
* @pre GFX_USE_GWIN must be set to TRUE in your gfxconf.h
* @pre GWIN_NEED_CHECKBOX must be set to TRUE in your gfxconf.h
@@ -41,10 +41,6 @@ typedef struct GEventGWinCheckbox_t {
bool_t isChecked; // Is the checkbox currently checked or unchecked?
} GEventGWinCheckbox;
-typedef enum GCheckboxShape_e {
- GCHBX_NORMAL, GCKBX_CUSTOM
-} GCheckboxShape;
-
typedef enum GCheckboxState_e {
GCHBX_UNCHECKED, GCHBX_CHECKED
} GCheckboxState;
diff --git a/src/gwin/checkbox.c b/src/gwin/checkbox.c
index 0cc75622..547a30b5 100644
--- a/src/gwin/checkbox.c
+++ b/src/gwin/checkbox.c
@@ -7,7 +7,7 @@
/**
* @file src/gwin/checkbox.c
- * @brief GWIN sub-system button code.
+ * @brief GWIN sub-system checkbox code.
*
* @defgroup Checkbox Checkbox
* @ingroup GWIN