Demo cleanup

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12511 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-11-20 07:40:06 +00:00
parent 80cb3dbc36
commit 6bff4be599
3 changed files with 6 additions and 6 deletions

View File

@@ -3,8 +3,8 @@ from wxPython.wx import *
#---------------------------------------------------------------------------
class MyMiniFrame(wxMiniFrame):
def __init__(self, parent, ID, title, pos, size, style):
wxMiniFrame.__init__(self, parent, ID, title, pos, size, style)
def __init__(self, parent, title, style):
wxMiniFrame.__init__(self, parent, -1, title, style=style)
panel = wxPanel(self, -1)
button = wxButton(panel, 1003, "Close Me")
@@ -21,9 +21,10 @@ class MyMiniFrame(wxMiniFrame):
#---------------------------------------------------------------------------
def runTest(frame, nb, log):
win = MyMiniFrame(frame, -1, "This is a wxMiniFrame",
(250, 250), (200, 200),
win = MyMiniFrame(frame, "This is a wxMiniFrame",
wxDEFAULT_FRAME_STYLE | wxTINY_CAPTION_HORIZ)
win.SetSize((200, 200))
win.CenterOnParent(wxBOTH)
frame.otherWin = win
win.Show(true)