aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gwin/container/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/modules/gwin/container/main.c')
-rw-r--r--demos/modules/gwin/container/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/modules/gwin/container/main.c b/demos/modules/gwin/container/main.c
index af2e8b1f..d43eca93 100644
--- a/demos/modules/gwin/container/main.c
+++ b/demos/modules/gwin/container/main.c
@@ -10,14 +10,14 @@ static void createWidgets(void) {
gwinWidgetClearInit(&wi);
// Apply the container parameters
- wi.g.show = FALSE;
+ wi.g.show = gFalse;
wi.g.width = 200;
wi.g.height = 150;
wi.g.y = 10;
wi.g.x = 10;
wi.text = "Container";
ghContainer = gwinContainerCreate(0, &wi, GWIN_CONTAINER_BORDER);
- wi.g.show = TRUE;
+ wi.g.show = gTrue;
// Apply the button parameters
wi.g.width = 120;
@@ -39,7 +39,7 @@ int main(void) {
// Set the widget defaults
gwinSetDefaultFont(gdispOpenFont("*"));
- gwinSetDefaultStyle(&WhiteWidgetStyle, FALSE);
+ gwinSetDefaultStyle(&WhiteWidgetStyle, gFalse);
gdispClear(GFX_WHITE);
// Create the widget