aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-01-04 21:21:51 +0100
committerJoel Bodenmann <joel@unormal.org>2014-01-04 21:21:51 +0100
commit463a7031832725cbd4cb16935b6ecc899db20ef8 (patch)
tree514872fd5664a96984ca16496a7905a20e15df27 /src/gwin/gwin.c
parent3a6dd294de7a41988aca7d396a9dae5e2042bc26 (diff)
downloaduGFX-463a7031832725cbd4cb16935b6ecc899db20ef8.tar.gz
uGFX-463a7031832725cbd4cb16935b6ecc899db20ef8.tar.bz2
uGFX-463a7031832725cbd4cb16935b6ecc899db20ef8.zip
whitespaces
Diffstat (limited to 'src/gwin/gwin.c')
-rw-r--r--src/gwin/gwin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gwin/gwin.c b/src/gwin/gwin.c
index f226294d..5c164444 100644
--- a/src/gwin/gwin.c
+++ b/src/gwin/gwin.c
@@ -231,7 +231,7 @@ bool_t gwinGetVisible(GHandle gh) {
#if GWIN_NEED_HIERARCHY
// return TRUE if all widgets (itself + parents) are visble, false otherwise
GHandle e = gh;
- for(e = gh; e; e = e->parent) {
+ for (e = gh; e; e = e->parent) {
if (!(e->flags & GWIN_FLG_VISIBLE))
return FALSE;
}
@@ -259,7 +259,7 @@ bool_t gwinGetEnabled(GHandle gh) {
#if GWIN_NEED_HIERARCHY
// return TRUE if all widgets (itself + parents) are enabled, false otherwise
GHandle e = gh;
- for(e = gh; e; e = e->parent) {
+ for (e = gh; e; e = e->parent) {
if (!(e->flags & GWIN_FLG_ENABLED))
return FALSE;
}