const wxString &name)
{
if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) )
- return FALSE;
+ return false;
// set bitmap first
SetBitmap(label);
// and adjust our size to fit it after this
SetBestSize(size);
- return TRUE;
+ return true;
}
// ----------------------------------------------------------------------------