Fixes a bug reported on wx-dev.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15855
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
size_t count = wxImage::GetImageCount( file, type );
size_t i;
wxImage image;
size_t count = wxImage::GetImageCount( file, type );
size_t i;
wxImage image;
for( i = 0; i < count; ++i )
{
for( i = 0; i < count; ++i )
{
- tmp.CopyFromBitmap( wxBitmap( image ) );
- AddIcon( tmp );
+ wxIcon* tmp = new wxIcon();
+ tmp->CopyFromBitmap( wxBitmap( image ) );
+ AddIcon( *tmp );
+ delete tmp;