Fix doxygen warnings

This commit is contained in:
Albrecht Schlosser 2025-12-06 21:52:33 +01:00
parent a4ebd8564d
commit 9fa438df68
4 changed files with 8 additions and 6 deletions

View File

@ -107,7 +107,8 @@
is ok to look at it outside of the handle() method. is ok to look at it outside of the handle() method.
Event numbers can be converted to their actual names using the Event numbers can be converted to their actual names using the
\ref fl_eventnames[] array defined in \#include <FL/names.h> fl_eventnames[] array (std::map since FLTK 1.5) defined
in \#include <FL/names.h>
\see Fl::event_text(), Fl::event_key(), class Fl:: \see Fl::event_text(), Fl::event_key(), class Fl::
*/ */

View File

@ -25,8 +25,9 @@ of the
\p handle() \p handle()
method, for instance in a callback. method, for instance in a callback.
Event numbers can be converted to their actual names using the \ref fl_eventnames[] array Event numbers can be converted to their actual names using the fl_eventnames[]
defined in \#include <FL/names.h>; see next chapter for details. array (std::map since FLTK 1.5) defined in
\#include <FL/names.h>; see next chapter for details.
In the next chapter, the In the next chapter, the
\ref subclassing_events "MyClass::handle()" \ref subclassing_events "MyClass::handle()"

View File

@ -298,7 +298,7 @@ uses the event. If you return zero, the parent widget will try
sending the event to another widget. sending the event to another widget.
For debugging purposes, event numbers can be printed as their actual event names 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 \code
#include <FL/names.h> // defines fl_eventnames[] #include <FL/names.h> // defines fl_eventnames[]
[..] [..]

View File

@ -1644,8 +1644,8 @@ const Fl_Menu_Item* Fl_Menu_Item::test_shortcut() const {
/** The Fl_Window from which currently displayed popups originate. /** The Fl_Window from which currently displayed popups originate.
Optionally, gives also the height of the display containing this window. Optionally, gives also the height of the display containing this window.
\parmm[out]display_height return the height of the display here. \param[out] display_height return the height of the display here.
\return pointe to the owning window \return pointer to the owning window
*/ */
Fl_Window *Fl_Window_Driver::menu_parent(int *display_height) { Fl_Window *Fl_Window_Driver::menu_parent(int *display_height) {
if (display_height) *display_height = Menu_Window::display_height_; if (display_height) *display_height = Menu_Window::display_height_;