Made wxEditor constructor args consistent with other window classes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6,8 +6,8 @@ from wxPython.lib.editor import wxEditor, wxPyEditor
|
||||
|
||||
def runTest(frame, nb, log):
|
||||
win = wxPanel(nb, -1)
|
||||
ed = wxEditor(win)
|
||||
pyed = wxPyEditor(win)
|
||||
ed = wxEditor(win, -1, style=wxSUNKEN_BORDER)
|
||||
pyed = wxPyEditor(win, -1, style=wxSUNKEN_BORDER)
|
||||
box = wxBoxSizer(wxVERTICAL)
|
||||
box.Add(ed, 1, wxALL|wxGROW, 5)
|
||||
box.Add(pyed, 1, wxALL|wxGROW, 5)
|
||||
|
Reference in New Issue
Block a user