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/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx') diff --git a/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx b/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx index 04c7a8edd..d23a00432 100644 --- a/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx +++ b/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx @@ -360,6 +360,8 @@ void Fl_WinAPI_Window_Driver::free_icons() { } +#if !defined(FL_DOXYGEN) // FIXME - silence Doxygen warnings + /** Sets the window icons using Windows' native HICON icon handles. The given icons are copied. You can free the icons immediately after @@ -381,7 +383,6 @@ void Fl_Window::icons(HICON big_icon, HICON small_icon) Fl_X::i(this)->set_icons(); } - /** Sets the default window icons. Convenience function to set the default icons using Windows' @@ -405,6 +406,7 @@ void Fl_Window::default_icons(HICON big_icon, HICON small_icon) { Fl_X::set_default_icons(big_icon, small_icon); } +#endif // !defined(FL_DOXYGEN) // FIXME - silence Doxygen warnings void Fl_WinAPI_Window_Driver::wait_for_expose() { if (!shown()) return; @@ -531,6 +533,7 @@ void Fl_WinAPI_Window_Driver::unmap() { ShowWindow(fl_xid(pWindow), SW_HIDE); } +#if !defined(FL_DOXYGEN) // FIXME - silence Doxygen warning void Fl_X::make_fullscreen(int X, int Y, int W, int H) { int top, bottom, left, right; @@ -565,6 +568,8 @@ void Fl_X::make_fullscreen(int X, int Y, int W, int H) { SetWindowPos(xid, HWND_TOP, X, Y, W, H, SWP_NOSENDCHANGING | SWP_FRAMECHANGED); } +#endif // !defined(FL_DOXYGEN) // FIXME - silence Doxygen warning + void Fl_WinAPI_Window_Driver::fullscreen_on() { pWindow->_set_fullscreen(); -- cgit v1.2.3