// headers
// ----------------------------------------------------------------------------
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "univstatbmp.h"
#endif
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;
}
// ----------------------------------------------------------------------------