1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Docs: Updated Viewport scrollbar docs

This commit is contained in:
ed 2021-06-07 16:51:36 +01:00
parent 0ff4123189
commit bbc05adb17

View file

@ -248,12 +248,12 @@ public:
*/
void setSingleStepSizes (int stepX, int stepY);
/** Returns a pointer to the scrollbar component being used.
/** Returns a reference to the scrollbar component being used.
Handy if you need to customise the bar somehow.
*/
ScrollBar& getVerticalScrollBar() noexcept { return *verticalScrollBar; }
/** Returns a pointer to the scrollbar component being used.
/** Returns a reference to the scrollbar component being used.
Handy if you need to customise the bar somehow.
*/
ScrollBar& getHorizontalScrollBar() noexcept { return *horizontalScrollBar; }