From e67e314df4e342323c2f2bb03fd2f79540990ded Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Tue, 26 Jul 2016 11:47:37 +0200 Subject: [PATCH] Minor fix in slider widget documentation --- src/gwin/gwin_slider.h | 4 ++-- 1 file 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 */