Create a new icon for each image in a file with multiple icons.

Fixes a bug reported on wx-dev.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15855 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2002-06-15 15:04:07 +00:00
parent 9954786be2
commit ab71cedf54

View File

@@ -58,7 +58,6 @@ void wxIconBundle::AddIcon( const wxString& file, long type )
size_t count = wxImage::GetImageCount( file, type ); size_t count = wxImage::GetImageCount( file, type );
size_t i; size_t i;
wxImage image; wxImage image;
wxIcon tmp;
for( i = 0; i < count; ++i ) for( i = 0; i < count; ++i )
{ {
@@ -69,8 +68,10 @@ void wxIconBundle::AddIcon( const wxString& file, long type )
continue; continue;
} }
tmp.CopyFromBitmap( wxBitmap( image ) ); wxIcon* tmp = new wxIcon();
AddIcon( tmp ); tmp->CopyFromBitmap( wxBitmap( image ) );
AddIcon( *tmp );
delete tmp;
} }
} }