X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/55d99c7a77789ff4904bf96eddca3715eb5af9b9..fe19000379ee9d39a58db249e53db25b2b719297:/src/common/gaugecmn.cpp?ds=sidebyside diff --git a/src/common/gaugecmn.cpp b/src/common/gaugecmn.cpp index b7384ea545..3458da9f4b 100644 --- a/src/common/gaugecmn.cpp +++ b/src/common/gaugecmn.cpp @@ -17,7 +17,7 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "gaugebase.h" #endif @@ -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; } // ----------------------------------------------------------------------------