]> git.saurik.com Git - wxWidgets.git/commitdiff
Create a new icon for each image in a file with multiple icons.
authorMattia Barbon <mbarbon@cpan.org>
Sat, 15 Jun 2002 15:04:07 +0000 (15:04 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sat, 15 Jun 2002 15:04:07 +0000 (15:04 +0000)
Fixes a bug reported on wx-dev.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15855 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/iconbndl.cpp

index 58deee8873b4e17d7efbd667f61224aaf4a29ccb..54a0b03dc756587951b65e9b37a3d1ac2f94ab96 100644 (file)
@@ -58,7 +58,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 +68,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;
     }
 }