git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59907
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- if ( !DoSelectAndSetIcon(icons, SM_CXSMICON, SM_CYSMICON, ICON_SMALL) &&
- !DoSelectAndSetIcon(icons, SM_CXICON, SM_CYICON, ICON_BIG) )
+ bool anySet =
+ DoSelectAndSetIcon(icons, SM_CXSMICON, SM_CYSMICON, ICON_SMALL);
+ if ( DoSelectAndSetIcon(icons, SM_CXICON, SM_CYICON, ICON_BIG) )
+ anySet = true;
+
+ if ( !anySet )
{
wxFAIL_MSG( "icon bundle doesn't contain any suitable icon" );
}
{
wxFAIL_MSG( "icon bundle doesn't contain any suitable icon" );
}