// Created: 20.02.01
// RCS-ID: $Id$
// Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// License: wxWindows license
+// License: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
// headers
// ----------------------------------------------------------------------------
-#ifdef __GNUG__
- #pragma implementation "gaugebase.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#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
// ----------------------------------------------------------------------------
const wxString& name)
{
if ( !wxControl::Create(parent, id, pos, size, style, validator, name) )
- return FALSE;
+ return false;
SetName(name);
SetRange(range);
SetValue(0);
- return TRUE;
+ return true;
}
// ----------------------------------------------------------------------------