aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@embedded.pro>2016-07-26 11:47:37 +0200
committerJoel Bodenmann <joel@embedded.pro>2016-07-26 11:47:37 +0200
commite67e314df4e342323c2f2bb03fd2f79540990ded (patch)
treecc1eeca9619a6a737950707f45f10df7c5a7b148 /src
parenta972649d65b545031de1e88023acb39b1d7a26e3 (diff)
downloaduGFX-e67e314df4e342323c2f2bb03fd2f79540990ded.tar.gz
uGFX-e67e314df4e342323c2f2bb03fd2f79540990ded.tar.bz2
uGFX-e67e314df4e342323c2f2bb03fd2f79540990ded.zip
Minor fix in slider widget documentation
Diffstat (limited to 'src')
-rw-r--r--src/gwin/gwin_slider.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gwin/gwin_slider.h b/src/gwin/gwin_slider.h
index a3c8489b..29cbeea0 100644
--- a/src/gwin/gwin_slider.h
+++ b/src/gwin/gwin_slider.h
@@ -107,7 +107,7 @@ GHandle gwinGSliderCreate(GDisplay *g, GSliderObject *gb, const GWidgetInit *pIn
* @param[in] min The minimum value
* @param[in] max The maximum value
* @note Sets the position to the minimum value.
- * @note The slider is not automatically drawn. Call gwinSliderDraw() after changing the range.
+ * @note The slider is not automatically drawn. Call gwinRedraw() after changing the range.
*
* @api
*/
@@ -120,7 +120,7 @@ void gwinSliderSetRange(GHandle gh, int min, int max);
* @param[in] pos The new position
* @note If the new position is outside the slider range then the position
* is set to the closest end of the range.
- * @note The slider is not automatically drawn. Call gwinSliderDraw() after changing the position.
+ * @note The slider is not automatically drawn. Call gwinRedraw() after changing the position.
*
* @api
*/