git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-02-18 05:21:49 +00:00
parent 91334b48e2
commit 71699da48d

View File

@@ -11,7 +11,7 @@ class TestPanel(wx.Panel):
box = wx.StaticBox(self, -1, "This is a wx.StaticBox")
bsizer = wx.StaticBoxSizer(box, wx.VERTICAL)
t = wx.StaticText(self, -1, "Controls placed \"inside\" the box are really it's siblings")
t = wx.StaticText(self, -1, "Controls placed \"inside\" the box are really its siblings")
bsizer.Add(t, 0, wx.TOP|wx.LEFT, 10)