summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Browser_.cxx8
-rw-r--r--src/fl_shortcut.cxx4
2 files changed, 8 insertions, 4 deletions
diff --git a/src/Fl_Browser_.cxx b/src/Fl_Browser_.cxx
index 13812731a..d1f83882f 100644
--- a/src/Fl_Browser_.cxx
+++ b/src/Fl_Browser_.cxx
@@ -333,10 +333,7 @@ void Fl_Browser_::display(void* p) {
// redraw, has side effect of updating top and setting scrollbar:
/**
- The first form draws the list within the normal widget bounding box.
-
- <P>The second form draws the contents of the browser within the
- specified bounding box.
+ Draws the list within the normal widget bounding box.
*/
void Fl_Browser_::draw() {
int drawsquare = 0;
@@ -542,6 +539,9 @@ void Fl_Browser_::replacing(void* a, void* b) {
if (a == max_width_item) {max_width_item = 0; max_width = 0;}
}
+/**
+ Exchange pointers \p a and \p b.
+*/
void Fl_Browser_::swapping(void* a, void* b) {
redraw_line(a);
redraw_line(b);
diff --git a/src/fl_shortcut.cxx b/src/fl_shortcut.cxx
index dd1d9b9d0..4f67464ab 100644
--- a/src/fl_shortcut.cxx
+++ b/src/fl_shortcut.cxx
@@ -202,6 +202,10 @@ const char * fl_shortcut_label(int shortcut) {
// Emulation of XForms named shortcuts
#include <stdlib.h>
+/**
+ Emulation of XForms named shortcuts.
+ \todo Why does doxygen display fl_old_shortcut() on Fl_Button page?
+*/
int fl_old_shortcut(const char* s) {
if (!s || !*s) return 0;
int n = 0;