From f120334da3fd538eb44498f3928f93e12af6aab1 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 6 Apr 2016 22:20:32 +0000 Subject: Fix Doxygen warnings. There was one obvious warning in src/fl_read_image.cxx, but others have to do with incomplete code and platform specific definitions. I'm not entirely happy with these changes. Temporary changes have been marked with 'FIXME' and should be removed later if possible. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11547 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl.cxx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src/Fl.cxx') diff --git a/src/Fl.cxx b/src/Fl.cxx index d1793cdce..316e584dd 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1888,14 +1888,28 @@ int Fl::dnd() return Fl::screen_driver()->dnd(); } +#if !defined(FL_DOXYGEN) // FIXME - silence Doxygen warnings + +/** + Resets marked text. + + \todo Please explain what exactly this does and how to use it. +*/ void Fl::reset_marked_text() { Fl::screen_driver()->reset_marked_text(); } -void Fl::insertion_point_location(int x, int y, int height) { // sets window coordinates & height of insertion point +/** + Sets window coordinates and height of insertion point. + + \todo Please explain what exactly this does and how to use it. +*/ +void Fl::insertion_point_location(int x, int y, int height) { Fl::screen_driver()->insertion_point_location(x, y, height); } +#endif // !defined(FL_DOXYGEN) // FIXME - silence Doxygen warnings + int Fl::event_key(int k) { return system_driver()->event_key(k); } -- cgit v1.2.3