const wxString& name)
{
if ( !wxBitmapButtonBase::Create(parent, id, "",
- pos, size, style, validator, name) )
+ pos, size,
+ style | wxBU_NOTEXT,
+ validator, name) )
return false;
SetBitmapLabel(bitmap);
// from the normal one
m_disabledSetByUser = true;
break;
+
+ default:
+ // nothing special to do but include the default clause to
+ // suppress gcc warnings
+ ;
}
}