Patch from Will Sadkin fixing parameter order

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@22640 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-08-06 15:14:17 +00:00
parent 1fc4b8e5d6
commit 6168f561d8

View File

@@ -400,11 +400,11 @@ class wxIntCtrl(wxTextCtrl):
"""
def __init__ (
self, parent, id=-1,
self, parent, id=-1, value = 0,
pos = wxDefaultPosition, size = wxDefaultSize,
style = 0, validator = wxDefaultValidator,
name = "integer",
value = 0, min=None, max=None,
min=None, max=None,
limited = 0, allow_none = 0, allow_long = 0,
default_color = wxBLACK, oob_color = wxRED,
):