X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f696653891801f586bfbfd7e11158e9dd2fff15..a148cfb64451d6553cf66d1075b654e54e908210:/src/common/iconbndl.cpp?ds=sidebyside diff --git a/src/common/iconbndl.cpp b/src/common/iconbndl.cpp index 58deee8873..54a0b03dc7 100644 --- a/src/common/iconbndl.cpp +++ b/src/common/iconbndl.cpp @@ -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; } }