From d875e3938122f8711e6cde434c9da566fe0f8d8a Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Wed, 28 Nov 2012 09:50:11 +0000 Subject: [PATCH] use LoadIcon instead of LoadImage --- Fltk/FlGui.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Fltk/FlGui.cpp b/Fltk/FlGui.cpp index 3b54829f50..247c2a03cb 100644 --- a/Fltk/FlGui.cpp +++ b/Fltk/FlGui.cpp @@ -138,8 +138,7 @@ FlGui::FlGui(int argc, char **argv) #if defined(WIN32) graph[0]->getWindow()->icon - ((const char*)LoadImage(fl_display, MAKEINTRESOURCE(IDI_ICON), - IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR)); + ((const void*)LoadIcon(fl_display, MAKEINTRESOURCE(IDI_ICON))); #elif defined(__APPLE__) // nothing to do here #else -- GitLab