From 463a7031832725cbd4cb16935b6ecc899db20ef8 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sat, 4 Jan 2014 21:21:51 +0100 Subject: [PATCH] whitespaces --- src/gwin/gwin.c | 4 ++-- 1 file 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; }