From bc9d3a1305905abe56933fb68cd9fb2062861f73 Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 3 Jan 2015 18:45:37 +1000 Subject: [PATCH] Fix macro problems for gwinShow, gwinHide etc --- src/gwin/sys_defs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gwin/sys_defs.h b/src/gwin/sys_defs.h index fefa909e..afab138c 100644 --- a/src/gwin/sys_defs.h +++ b/src/gwin/sys_defs.h @@ -348,7 +348,7 @@ extern "C" { * * @api */ - #define gwinShow(gh) gwinSetVisible(gh, TRUE); + #define gwinShow(gh) gwinSetVisible(gh, TRUE) /** * @brief Makes a widget become invisible @@ -357,7 +357,7 @@ extern "C" { * * @api */ - #define gwinHide(gh) gwinSetVisible(gh, FALSE); + #define gwinHide(gh) gwinSetVisible(gh, FALSE) /** * @brief Gets the visibility of a window @@ -394,7 +394,7 @@ extern "C" { * * @api */ - #define gwinEnable(gh) gwinSetEnabled(gh, TRUE); + #define gwinEnable(gh) gwinSetEnabled(gh, TRUE) /** * @brief Disables a widget @@ -403,7 +403,7 @@ extern "C" { * * @api */ - #define gwinDisable(gh) gwinSetEnabled(gh, FALSE); + #define gwinDisable(gh) gwinSetEnabled(gh, FALSE) /** * @brief Gets the enabled state of a window