From 1815d7db8add8ac11114e445c2ef5e3a091c52c8 Mon Sep 17 00:00:00 2001 From: Noah Dayan Date: Mon, 20 Nov 2017 15:10:15 +0000 Subject: [PATCH] Add missing enum documentation and fix comma in juce_Slider.h --- modules/juce_gui_basics/widgets/juce_Slider.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_gui_basics/widgets/juce_Slider.h b/modules/juce_gui_basics/widgets/juce_Slider.h index 2ae9768839..fb15579197 100644 --- a/modules/juce_gui_basics/widgets/juce_Slider.h +++ b/modules/juce_gui_basics/widgets/juce_Slider.h @@ -62,7 +62,7 @@ public: LinearHorizontal, /**< A traditional horizontal slider. */ LinearVertical, /**< A traditional vertical slider. */ LinearBar, /**< A horizontal bar slider with the text label drawn on top of it. */ - LinearBarVertical, + LinearBarVertical, /**< A vertical bar slider with the text label drawn on top of it. */ Rotary, /**< A rotary control that you move by dragging the mouse in a circular motion, like a knob. @see setRotaryParameters */ RotaryHorizontalDrag, /**< A rotary control that you move by dragging the mouse left-to-right. @@ -81,7 +81,7 @@ public: ThreeValueHorizontal, /**< A horizontal slider that has three thumbs instead of one, so it can show a minimum and maximum value, with the current value being somewhere between them. @see setMinValue, setMaxValue */ - ThreeValueVertical, /**< A vertical slider that has three thumbs instead of one, so it can show a minimum and maximum + ThreeValueVertical /**< A vertical slider that has three thumbs instead of one, so it can show a minimum and maximum value, with the current value being somewhere between them. @see setMinValue, setMaxValue */ };