aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_checkbox.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2016-02-18 00:17:38 +0100
committerJoel Bodenmann <joel@seriouslyembedded.com>2016-02-18 00:17:38 +0100
commit3a840480edda367902cc71416e37f6eb92bce438 (patch)
treea3472fc2e524b8d8e1fa6292d90c9a592d8a419d /src/gwin/gwin_checkbox.h
parent7b6a1acea545df522ac8e12666dc208f9cd605ee (diff)
downloaduGFX-3a840480edda367902cc71416e37f6eb92bce438.tar.gz
uGFX-3a840480edda367902cc71416e37f6eb92bce438.tar.bz2
uGFX-3a840480edda367902cc71416e37f6eb92bce438.zip
Move GWIN widget internal flags into the public header so that all the state flags are available for custom draw routines.
Diffstat (limited to 'src/gwin/gwin_checkbox.h')
-rw-r--r--src/gwin/gwin_checkbox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwin_checkbox.h b/src/gwin/gwin_checkbox.h
index 48807239..5fc8f8a1 100644
--- a/src/gwin/gwin_checkbox.h
+++ b/src/gwin/gwin_checkbox.h
@@ -50,7 +50,7 @@ typedef struct GEventGWinCheckbox {
* @note Used only for writing a custom draw routine.
* @{
*/
-#define GCHECKBOX_FLG_CHECKED (GWIN_FIRST_CONTROL_FLAG<<0)
+#define GCHECKBOX_FLG_CHECKED (0x00000001<<0)
/** @} */
/* A Checkbox window */