summaryrefslogtreecommitdiff
path: root/documentation/src
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/src')
-rw-r--r--documentation/src/events.dox5
-rw-r--r--documentation/src/subclassing.dox2
2 files changed, 4 insertions, 3 deletions
diff --git a/documentation/src/events.dox b/documentation/src/events.dox
index af0b381dc..53b4e9953 100644
--- a/documentation/src/events.dox
+++ b/documentation/src/events.dox
@@ -25,8 +25,9 @@ of the
\p handle()
method, for instance in a callback.
-Event numbers can be converted to their actual names using the \ref fl_eventnames[] array
-defined in \#include <FL/names.h>; see next chapter for details.
+Event numbers can be converted to their actual names using the fl_eventnames[]
+array (std::map since FLTK 1.5) defined in
+\#include <FL/names.h>; see next chapter for details.
In the next chapter, the
\ref subclassing_events "MyClass::handle()"
diff --git a/documentation/src/subclassing.dox b/documentation/src/subclassing.dox
index 384e510f6..1782bc5b7 100644
--- a/documentation/src/subclassing.dox
+++ b/documentation/src/subclassing.dox
@@ -298,7 +298,7 @@ uses the event. If you return zero, the parent widget will try
sending the event to another widget.
For debugging purposes, event numbers can be printed as their actual event names
-using the \ref fl_eventnames[] array, e.g.:
+using the fl_eventnames[] array (std::map since FLTK 1.5), e.g.:
\code
#include <FL/names.h> // defines fl_eventnames[]
[..]