#include "wx/gauge.h"
#endif
+static const long DEFAULT_RANGE = 100;
+
IMPLEMENT_DYNAMIC_CLASS(wxGaugeXmlHandler, wxXmlResourceHandler)
wxGaugeXmlHandler::wxGaugeXmlHandler()
control->Create(m_parentAsWindow,
GetID(),
- GetLong(wxT("range"), wxGAUGE_DEFAULT_RANGE),
+ GetLong(wxT("range"), DEFAULT_RANGE),
GetPosition(), GetSize(),
GetStyle(),
wxDefaultValidator,