API fix
This commit is contained in:
parent
a4ca308dd5
commit
427cfaa052
1 changed files with 2 additions and 2 deletions
|
@ -167,14 +167,14 @@ void gwinSetSliderCustom(GHandle gh, GSliderDrawFunction fn, void *param);
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
#define gwinEnableSlider(gh) gwinSetSliderEnabled( ((GSliderObject *)(gh)), TRUE)
|
#define gwinEnableSlider(gh) gwinSliderSetEnabled( ((GSliderObject *)(gh)), TRUE)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Disable a slider
|
* @brief Disable a slider
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
#define gwinDisableSlider(gh) gwinSetSliderEnabled( ((GSliderObject *)(gh)), FALSE)
|
#define gwinDisableSlider(gh) gwinSliderSetEnabled( ((GSliderObject *)(gh)), FALSE)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the current slider position.
|
* @brief Get the current slider position.
|
||||||
|
|
Loading…
Add table
Reference in a new issue