]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/icon.cpp
Avoid crash when trying to access m_window from wxScreenDC.
[wxWidgets.git] / src / msw / icon.cpp
index 2b028056152f7b65f17a6b3882799fb5ad3429f8..ebf8f49d986406df0624544bf5c33defb8b710cb 100644 (file)
@@ -25,7 +25,6 @@
 #endif
 
 #ifndef WX_PRECOMP
-    #include "wx/defs.h"
     #include "wx/list.h"
     #include "wx/utils.h"
     #include "wx/app.h"
@@ -145,8 +144,14 @@ bool wxIcon::LoadFile(const wxString& filename,
 
     if ( !handler )
     {
-        // say something?
-        return false;
+        // load via wxBitmap which, in turn, uses wxImage allowing us to
+        // support more formats
+        wxBitmap bmp;
+        if ( !bmp.LoadFile(filename, type) )
+            return false;
+
+        CopyFromBitmap(bmp);
+        return true;
     }
 
     return handler->Load(this, filename, type, desiredWidth, desiredHeight);