Correct docs for wxSpinCtrlDouble style parameter

The default in the code was changed as a result of #10621 but the
docs weren't updated to match.

Closes #17914.

See https://github.com/wxWidgets/wxWidgets/pull/534
This commit is contained in:
Olly Betts 2017-08-08 20:56:00 +12:00 committed by VZ
parent ec55f11ff7
commit a00674a6ae

View File

@ -98,7 +98,7 @@ public:
const wxString& value = wxEmptyString,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxSP_ARROW_KEYS,
long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
int min = 0, int max = 100,
int initial = 0, const wxString& name = "wxSpinCtrl");
@ -110,7 +110,8 @@ public:
const wxString& value = wxEmptyString,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxSP_ARROW_KEYS, int min = 0, int max = 100,
long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
int min = 0, int max = 100,
int initial = 0, const wxString& name = "wxSpinCtrl");
/**