/////////////////////////////////////////////////////////////////////////////
-// Name: xh_spin.cpp
+// Name: src/xrc/xh_spin.cpp
// Purpose: XRC resource for wxSpinButton
// Author: Bob Mitchell
// Created: 2000/03/21
GetLong(wxT("value"), DEFAULT_VALUE),
GetName());
+ const long base = GetLong(wxS("base"), 10);
+ if ( base != 10 )
+ control->SetBase(base);
+
SetupWindow(control);
return control;