From 1778ee8831c00599b31390b61e687bd6b06bcb19 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Thu, 24 Mar 2016 06:19:10 +0000 Subject: Fix the implementation of Fl_Window::default_icons(const Fl_RGB_Image *icons[], int count) under the driver model. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11417 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Window.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/Fl_Window.cxx') diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index 05b8a8470..ef9669973 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -21,7 +21,6 @@ // crap you need to do to communicate with X is in Fl_x.cxx, the // equivalent (but totally different) crap for MSWindows is in Fl_win32.cxx #include -#include #include #include #include @@ -310,7 +309,7 @@ void Fl_Window::default_icon(const Fl_RGB_Image *icon) { \see Fl_Window::icons(const Fl_RGB_Image *[], int) */ void Fl_Window::default_icons(const Fl_RGB_Image *icons[], int count) { - Fl_X::set_default_icons(icons, count); + Fl_Window_Driver::default_icons(icons, count); } /** Sets a single window icon. -- cgit v1.2.3