From c32f8efb8febccfb043da11345f5a5aa4a3196cb Mon Sep 17 00:00:00 2001 From: Gregory A Lundberg Date: Sat, 28 Oct 2017 21:03:16 -0500 Subject: [PATCH] Fix syntax and autodoc errors --- src/gui/widgets/slider_base.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/widgets/slider_base.hpp b/src/gui/widgets/slider_base.hpp index 79088488ab982..2200353ca92be 100644 --- a/src/gui/widgets/slider_base.hpp +++ b/src/gui/widgets/slider_base.hpp @@ -186,7 +186,7 @@ class slider_base : public styled_widget { } - virtual int jump_size() const { return 1; }; + virtual int jump_size() const { return 1; } private: void set_state(const state_t state); @@ -316,7 +316,7 @@ class slider_base : public styled_widget /** * Moves the positioner. * - * @param distance The new offset in pixels of the positioner; + * @param offset The new offset in pixels of the positioner; */ void move_positioner(int offset);