X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/799ea01170e831c212320b0cb3038a91785e4789..98cb8dcb0cf3b0e660f1f67e1c02451ab10257de:/src/common/gaugecmn.cpp diff --git a/src/common/gaugecmn.cpp b/src/common/gaugecmn.cpp index eeee356908..9a5b31881c 100644 --- a/src/common/gaugecmn.cpp +++ b/src/common/gaugecmn.cpp @@ -6,7 +6,7 @@ // Created: 20.02.01 // RCS-ID: $Id$ // Copyright: (c) 2001 Vadim Zeitlin -// License: wxWindows license +// License: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ - #pragma implementation "gaugebase.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -58,7 +54,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 +65,7 @@ bool wxGaugeBase::Create(wxWindow *parent, SetRange(range); SetValue(0); - return TRUE; + return true; } // ----------------------------------------------------------------------------