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:
parent
ec55f11ff7
commit
a00674a6ae
@ -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");
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user