summaryrefslogtreecommitdiff
path: root/src/Fl_Browser_.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Browser_.cxx')
-rw-r--r--src/Fl_Browser_.cxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/Fl_Browser_.cxx b/src/Fl_Browser_.cxx
index 8a4bc2714..9a6b8f801 100644
--- a/src/Fl_Browser_.cxx
+++ b/src/Fl_Browser_.cxx
@@ -71,12 +71,24 @@ static void hscrollbar_callback(Fl_Widget* s, void*) {
// binary compatibility in 1.1.x - M. Sweet
int Fl_Browser_::scrollbar_width_ = 16;
-// Get the standard scrollbar size
+/**
+ Gets the default scrollbar size that is used by the
+ Fl_Browser_,
+ Fl_Help_View,
+ Fl_Scroll, and
+ Fl_Text_Display widgets.
+*/
int Fl::scrollbar_size() {
return Fl_Browser_::scrollbar_width();
}
-// Set the standard scrollbar size
+/**
+ Sets the default scrollbar size that is used by the
+ Fl_Browser_,
+ Fl_Help_View,
+ Fl_Scroll, and
+ Fl_Text_Display widgets.
+*/
void Fl::scrollbar_size(int W) {
Fl_Browser_::scrollbar_width(W);
}