aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-01-04 15:51:18 +0100
committerJoel Bodenmann <joel@unormal.org>2014-01-04 15:51:18 +0100
commitbad22f5feea49a7417237aa70e2f6b9e349d91c2 (patch)
tree81bb7485d055fed8ef0ce4b5908e31b550a37f6e /include
parent12a7d7957b0d264ab44f2f17075a9cc3a524da43 (diff)
downloaduGFX-bad22f5feea49a7417237aa70e2f6b9e349d91c2.tar.gz
uGFX-bad22f5feea49a7417237aa70e2f6b9e349d91c2.tar.bz2
uGFX-bad22f5feea49a7417237aa70e2f6b9e349d91c2.zip
working gwinGetVisible() and gwinGetEnabled()
Diffstat (limited to 'include')
-rw-r--r--include/gwin/gwin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h
index b9d4f966..e5eb2e0b 100644
--- a/include/gwin/gwin.h
+++ b/include/gwin/gwin.h
@@ -50,9 +50,9 @@ typedef struct GWindowObject {
font_t font; // @< The current font
#endif
#if GWIN_NEED_HIERARCHY
- GHandle *parent; // @< The pointer to the parent (or NULL)
- GHandle *sibling; // @< The pointer to a widgets brother
- GHandle *child; // @< The pointer to a widgets child
+ GHandle parent; // @< The parent widget
+ GHandle sibling; // @< The widget to its left (add right later as well)
+ GHandle child; // @< The child widget
#endif
} GWindowObject, * GHandle;
/* @} */