X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/217099990c2665d18d352c60058106da9a014ab8..cc1487e53905bd534dba2099d33ac2142cec7818:/src/common/gaugecmn.cpp diff --git a/src/common/gaugecmn.cpp b/src/common/gaugecmn.cpp index 585f8e6f68..49d5b59144 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" @@ -31,14 +27,21 @@ #ifndef WX_PRECOMP #endif //WX_PRECOMP +#if wxUSE_GAUGE + #include "wx/gauge.h" -#if wxUSE_GAUGE +const wxChar wxGaugeNameStr[] = wxT("gauge"); // ============================================================================ // implementation // ============================================================================ +wxGaugeBase::~wxGaugeBase() +{ + // this destructor is required for Darwin +} + // ---------------------------------------------------------------------------- // wxGauge creation // ---------------------------------------------------------------------------- @@ -53,7 +56,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); @@ -64,7 +67,7 @@ bool wxGaugeBase::Create(wxWindow *parent, SetRange(range); SetValue(0); - return TRUE; + return true; } // ----------------------------------------------------------------------------