aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-05-27 13:02:33 +0200
committerJoel Bodenmann <joel@unormal.org>2013-05-27 13:02:33 +0200
commit427cfaa0525744b29e6b2cb26b3845b383bcad3b (patch)
tree81af9fb8227020534af87c6cf7e9e92aaa0688d9 /include
parenta4ca308dd51bb780ead1e2388bffe391fcef5659 (diff)
downloaduGFX-427cfaa0525744b29e6b2cb26b3845b383bcad3b.tar.gz
uGFX-427cfaa0525744b29e6b2cb26b3845b383bcad3b.tar.bz2
uGFX-427cfaa0525744b29e6b2cb26b3845b383bcad3b.zip
API fix
Diffstat (limited to 'include')
-rw-r--r--include/gwin/slider.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gwin/slider.h b/include/gwin/slider.h
index 9a51d042..5e77a846 100644
--- a/include/gwin/slider.h
+++ b/include/gwin/slider.h
@@ -167,14 +167,14 @@ void gwinSetSliderCustom(GHandle gh, GSliderDrawFunction fn, void *param);
*
* @api
*/
-#define gwinEnableSlider(gh) gwinSetSliderEnabled( ((GSliderObject *)(gh)), TRUE)
+#define gwinEnableSlider(gh) gwinSliderSetEnabled( ((GSliderObject *)(gh)), TRUE)
/**
* @brief Disable a slider
*
* @api
*/
-#define gwinDisableSlider(gh) gwinSetSliderEnabled( ((GSliderObject *)(gh)), FALSE)
+#define gwinDisableSlider(gh) gwinSliderSetEnabled( ((GSliderObject *)(gh)), FALSE)
/**
* @brief Get the current slider position.