X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14f355c2b5c71fc7c3d680aea366582d2ac60f7b..659af826726fea66d2476d3a0ead2fb00e34ad23:/src/common/gaugecmn.cpp?ds=sidebyside diff --git a/src/common/gaugecmn.cpp b/src/common/gaugecmn.cpp index 4b5681f36d..3458da9f4b 100644 --- a/src/common/gaugecmn.cpp +++ b/src/common/gaugecmn.cpp @@ -58,7 +58,7 @@ bool wxGaugeBase::Create(wxWindow *parent, const wxString& name) { if ( !wxControl::Create(parent, id, pos, size, style, validator, name) ) - return FALSE; + return false; SetName(name); @@ -69,7 +69,7 @@ bool wxGaugeBase::Create(wxWindow *parent, SetRange(range); SetValue(0); - return TRUE; + return true; } // ----------------------------------------------------------------------------