]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/iconbndl.cpp
Added wxPaintDCEx class, to handle the case where an HDC
[wxWidgets.git] / src / common / iconbndl.cpp
index 58deee8873b4e17d7efbd667f61224aaf4a29ccb..cd9bf9886ab75b704036dbaf4d6a8c5216c41e41 100644 (file)
@@ -24,6 +24,7 @@
     #include "wx/icon.h"
     #include "wx/log.h"
     #include "wx/intl.h"
+    #include "wx/bitmap.h"
 #endif
 
 #ifndef _WX_IMAGE_H_
@@ -58,7 +59,6 @@ void wxIconBundle::AddIcon( const wxString& file, long type )
     size_t count = wxImage::GetImageCount( file, type );
     size_t i;
     wxImage image;
-    wxIcon tmp;
 
     for( i = 0; i < count; ++i )
     {
@@ -69,8 +69,10 @@ void wxIconBundle::AddIcon( const wxString& file, long type )
             continue;
         }
 
-        tmp.CopyFromBitmap( wxBitmap( image ) );
-        AddIcon( tmp );
+        wxIcon* tmp = new wxIcon();
+        tmp->CopyFromBitmap( wxBitmap( image ) );
+        AddIcon( *tmp );
+        delete tmp;
     }
 }