Fixes from robins pull reqz comments

changed pull reqz suggestions except for

dc.SetBackground(wx.WHITE_BRUSH)

per robins suggestions/fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74402 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-07-05 22:57:15 +00:00
parent f440e989fc
commit a309489a48
6 changed files with 15 additions and 32 deletions

View File

@@ -77,11 +77,11 @@ class TestPanel(wx.Panel):
def OnButton1(self, evt):
win = WrapSizerTest1(self, -1, "wx.WrapSizer Demo1", size=(640, 480))
win = WrapSizerTest1(self, -1, "wx.WrapSizer HORIZONTAL Demo", size=(640, 480))
win.Show(True)
def OnButton2(self, evt):
win = WrapSizerTest2(self, -1, "wx.WrapSizer Demo2", size=(640, 480))
win = WrapSizerTest2(self, -1, "wx.WrapSizer VERTICAL Demo", size=(640, 480))
win.Show(True)
#----------------------------------------------------------------------