From: Robin Dunn Date: Wed, 6 Aug 2003 15:14:17 +0000 (+0000) Subject: Patch from Will Sadkin fixing parameter order X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/44934d2cf677153116ef59dac3907fe7ee5622db Patch from Will Sadkin fixing parameter order git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22640 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/intctrl.py b/wxPython/wxPython/lib/intctrl.py index 7ec40a0d3b..c9a37b4b67 100644 --- a/wxPython/wxPython/lib/intctrl.py +++ b/wxPython/wxPython/lib/intctrl.py @@ -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, ):