From 051b715c12d1966718ab91b1aeb01c8cfc7d599b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 7 Sep 2020 12:20:25 +0200 Subject: [PATCH] Platform: reference useful APIs and docs from setWindowIcon(). --- src/Magnum/Platform/GlfwApplication.h | 2 ++ src/Magnum/Platform/Sdl2Application.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index dfccb0367..2f7c6ab18 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -481,6 +481,8 @@ class GlfwApplication { * @note Available since GLFW 3.2. The function has no effect on macOS * / Wayland, see @m_class{m-doc-external} [glfwSetWindowIcon()](https://www.glfw.org/docs/latest/group__window.html#gadd7ccd39fe7a7d1f0904666ae5932dc5) * for more information. + * @see @ref platform-windows-icon "Excecutable icon on Windows", + * @ref Trade::IcoImporter "IcoImporter" */ void setWindowIcon(std::initializer_list images); diff --git a/src/Magnum/Platform/Sdl2Application.h b/src/Magnum/Platform/Sdl2Application.h index 0368e124c..1cc75f12d 100644 --- a/src/Magnum/Platform/Sdl2Application.h +++ b/src/Magnum/Platform/Sdl2Application.h @@ -787,6 +787,8 @@ class Sdl2Application { * have no effect on macOS / Wayland, similarly to how * @ref GlfwApplication::setWindowIcon() behaves on those * platforms. + * @see @ref platform-windows-icon "Excecutable icon on Windows", + * @ref Trade::IcoImporter "IcoImporter" */ void setWindowIcon(const ImageView2D& image); #endif