SetDefaultXXX -> SetOwnXXX

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2004-06-30 17:12:03 +00:00
parent 4d0f796587
commit fa47d7a7ad
14 changed files with 112 additions and 112 deletions

View File

@@ -50,10 +50,10 @@ class LayoutTestFrame(wx.Frame):
bottomPanel = wx.Panel(p, style=wx.SUNKEN_BORDER, name="bottomPanel")
bottomPanel.SetMinSize((640,240))
bottomPanel.SetDefaultBackgroundColour("light blue")
bottomPanel.SetOwnBackroundColour("light blue")
self.testPanel = wx.Panel(bottomPanel, name="testPanel")
self.testPanel.SetDefaultBackgroundColour((205, 183, 181)) # mistyrose3
self.testPanel.SetOwnBackroundColour((205, 183, 181)) # mistyrose3
self.testWidget = None
self.infoPane = InfoPane(p)