if ( ms_theme )
{
// we already have a theme
- return TRUE;
+ return true;
}
wxString nameDefTheme;
{
wxLogError(_("Failed to initialize GUI: no built-in themes found."));
- return FALSE;
+ return false;
}
// Set the theme as current.
wxTheme::Set(theme);
- return TRUE;
+ return true;
}
/* static */ wxTheme *wxTheme::Set(wxTheme *theme)