X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14f355c2b5c71fc7c3d680aea366582d2ac60f7b..222702b112dcc7bebe018d6f4d66fe469fefd02c:/src/univ/statbmp.cpp diff --git a/src/univ/statbmp.cpp b/src/univ/statbmp.cpp index 32bb836f7d..f305d9ff2d 100644 --- a/src/univ/statbmp.cpp +++ b/src/univ/statbmp.cpp @@ -58,7 +58,7 @@ bool wxStaticBitmap::Create(wxWindow *parent, const wxString &name) { if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) ) - return FALSE; + return false; // set bitmap first SetBitmap(label); @@ -66,7 +66,7 @@ bool wxStaticBitmap::Create(wxWindow *parent, // and adjust our size to fit it after this SetBestSize(size); - return TRUE; + return true; } // ----------------------------------------------------------------------------