Fix macro problems for gwinShow, gwinHide etc

ugfx_release_2.6
inmarket 2015-01-03 18:45:37 +10:00
parent 28d9da556a
commit bc9d3a1305
1 changed files with 4 additions and 4 deletions

View File

@ -348,7 +348,7 @@ extern "C" {
* *
* @api * @api
*/ */
#define gwinShow(gh) gwinSetVisible(gh, TRUE); #define gwinShow(gh) gwinSetVisible(gh, TRUE)
/** /**
* @brief Makes a widget become invisible * @brief Makes a widget become invisible
@ -357,7 +357,7 @@ extern "C" {
* *
* @api * @api
*/ */
#define gwinHide(gh) gwinSetVisible(gh, FALSE); #define gwinHide(gh) gwinSetVisible(gh, FALSE)
/** /**
* @brief Gets the visibility of a window * @brief Gets the visibility of a window
@ -394,7 +394,7 @@ extern "C" {
* *
* @api * @api
*/ */
#define gwinEnable(gh) gwinSetEnabled(gh, TRUE); #define gwinEnable(gh) gwinSetEnabled(gh, TRUE)
/** /**
* @brief Disables a widget * @brief Disables a widget
@ -403,7 +403,7 @@ extern "C" {
* *
* @api * @api
*/ */
#define gwinDisable(gh) gwinSetEnabled(gh, FALSE); #define gwinDisable(gh) gwinSetEnabled(gh, FALSE)
/** /**
* @brief Gets the enabled state of a window * @brief Gets the enabled state of a window