summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-10-06 13:15:16 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-10-06 13:15:16 +0200
commit5f189aa2139da497de03b2dfc157dbffd176a27c (patch)
treef8dd27e59433a59340c282567f244c406c65ba20 /src
parent6732044a0789d45b5daa5a376474ca832db44ddb (diff)
Make Windows-specific HICON-using functions visible in doc.
Diffstat (limited to 'src')
-rw-r--r--src/Fl_win32.cxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index 4b633c1e2..f5a671f16 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -2447,14 +2447,7 @@ void Fl_WinAPI_Screen_Driver::default_icons(const Fl_RGB_Image *icons[], int cou
}
}
-/** Sets the window icons using Windows' native HICON icon handles.
- The given icons are copied. You can free the icons immediately after
- this call.
-
- \param[in] big_icon large window icon
- \param[in] small_icon small window icon
- */
void Fl_Window::icons(HICON big_icon, HICON small_icon) {
free_icons();
if (big_icon != NULL)
@@ -2465,25 +2458,6 @@ void Fl_Window::icons(HICON big_icon, HICON small_icon) {
Fl_WinAPI_Window_Driver::driver(this)->set_icons();
}
-/** Sets the default window icons.
-
- Convenience function to set the default icons using Windows'
- native HICON icon handles.
-
- The given icons are copied. You can free the icons immediately after
- this call.
-
- \param[in] big_icon default large icon for all windows
- subsequently created
- \param[in] small_icon default small icon for all windows
- subsequently created
-
- \see Fl_Window::default_icon(const Fl_RGB_Image *)
- \see Fl_Window::default_icons(const Fl_RGB_Image *[], int)
- \see Fl_Window::icon(const Fl_RGB_Image *)
- \see Fl_Window::icons(const Fl_RGB_Image *[], int)
- \see Fl_Window::icons(HICON, HICON)
- */
void Fl_Window::default_icons(HICON big_icon, HICON small_icon) {
if (default_big_icon != NULL)
DestroyIcon(default_big_icon);