diff options
author | inmarket <andrewh@inmarket.com.au> | 2015-01-03 18:45:37 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2015-01-03 18:45:37 +1000 |
commit | bc9d3a1305905abe56933fb68cd9fb2062861f73 (patch) | |
tree | f1e5e706f61532e70223a48754bc11a727e4d0a3 | |
parent | 28d9da556a5c892c09412a03bf7f0177c72f1ab1 (diff) | |
download | uGFX-bc9d3a1305905abe56933fb68cd9fb2062861f73.tar.gz uGFX-bc9d3a1305905abe56933fb68cd9fb2062861f73.tar.bz2 uGFX-bc9d3a1305905abe56933fb68cd9fb2062861f73.zip |
Fix macro problems for gwinShow, gwinHide etc
-rw-r--r-- | src/gwin/sys_defs.h | 8 |
1 files 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 |