summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2025-04-29 20:16:11 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2025-04-29 20:16:11 +0200
commit719642b5d6207dafab5d90675ff7d3bcb4fa97c7 (patch)
treefb5189f08f6fa16f06f89ab76db01a7f35d386b5 /FL
parente0802889d467912251d9a7f60c033c3737c33aa7 (diff)
Fix Doxygen warning for older Doxygen versions
Note: doxygen versions < 1.9.6 are not recommended for PDF docs but *may* work for HTML documentation.
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Terminal.H14
1 files changed, 7 insertions, 7 deletions
diff --git a/FL/Fl_Terminal.H b/FL/Fl_Terminal.H
index dc11e311c..6ab67be29 100644
--- a/FL/Fl_Terminal.H
+++ b/FL/Fl_Terminal.H
@@ -2,7 +2,7 @@
// Fl_Terminal - A terminal widget for Fast Light Tool Kit (FLTK).
//
// Copyright 2022 by Greg Ercolano.
-// Copyright 2024 by Bill Spitzak and others.
+// Copyright 2024-2025 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -829,10 +829,10 @@ public:
/**
Vertical scrollbar. This is public so it can be accessed directly, e.g.
- - \ref Fl_Scrollbar::value(void) "scrollbar->value(void)" returns the row offset
+ - \ref Fl_Scrollbar::value() "scrollbar->value()" returns the row offset
from the bottom of the display, 0 being the bottom (default).
- - \ref Fl_Scrollbar::value(int) "scrollbar->value(int)" similarly sets the row offset,
- which should be in the range [0 .. Fl_Scrollbar::maximum()].
+ - \ref Fl_Scrollbar::value(int) "scrollbar->value(int)" similarly sets the row
+ offset, which should be in the range [0 .. Fl_Scrollbar::maximum()].
- \ref Fl_Scrollbar::step(double) "scrollbar->step(double)" sets the smoothness
of scrolling, default is 0.25 for 4 steps of motion per column.
@@ -843,10 +843,10 @@ public:
/**
Horizontal scrollbar. This is public so it can be accessed directly, e.g.
- - \ref Fl_Scrollbar::value(void) "hscrollbar->value(void)" returns the column offset
+ - \ref Fl_Scrollbar::value() "hscrollbar->value()" returns the column offset
position from the left edge of the display; 0 being the left edge (default).
- - \ref Fl_Scrollbar::value(int) "hscrollbar->value(int)" similarly sets the column offset,
- which should be in the range [0 .. Fl_Scrollbar::maximum()].
+ - \ref Fl_Scrollbar::value(int) "hscrollbar->value(int)" similarly sets the column
+ offset, which should be in the range [0 .. Fl_Scrollbar::maximum()].
- \ref Fl_Scrollbar::step(double) "hscrollbar->step(double)" sets the smoothness
of scrolling, default is 0.25 for 4 steps of motion per column.
*/