diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-04-06 22:20:32 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-04-06 22:20:32 +0000 |
| commit | f120334da3fd538eb44498f3928f93e12af6aab1 (patch) | |
| tree | 3070cf4b3edfb610099869006ee61168e863687d /FL | |
| parent | 9fa4059f43194e5dd3331903be62148b21f16d65 (diff) | |
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
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl.H | 5 | ||||
| -rw-r--r-- | FL/Fl_Window.H | 2 |
2 files changed, 4 insertions, 3 deletions
@@ -168,6 +168,7 @@ public: // run time information about compile time configuration /** @} */ public: // should be private! + #ifndef FL_DOXYGEN static int e_number; static int e_x; @@ -197,8 +198,8 @@ public: // should be private! static void reset_marked_text(); // resets marked text static void insertion_point_location(int x, int y, int height); // sets window coordinates & height of insertion point #endif // FL_DOXYGEN - - + + /** If true then flush() will do something. */ diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H index 7735a5ed1..3c887232a 100644 --- a/FL/Fl_Window.H +++ b/FL/Fl_Window.H @@ -351,7 +351,7 @@ public: void icon(const Fl_RGB_Image*); void icons(const Fl_RGB_Image*[], int); -#ifdef WIN32 +#if defined(WIN32) && !defined(FL_DOXYGEN) typedef struct HICON__* HICON; // These 2 member functions break the driver model but are kept for back compatibility. // They are implemented in Fl_WinAPI_Window_Driver.cxx |
