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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user