- Work towards new setup

This commit is contained in:
ccremers 2006-08-03 12:13:47 +00:00
parent 982624108c
commit 4681d2bf03

View File

@ -248,15 +248,11 @@ class ResultWindow(wx.Dialog):
btn = wx.ContextHelpButton(self)
btnsizer.AddButton(btn)
btn = wx.Button(self, wx.ID_OK)
btn.SetHelpText("The OK button completes the dialog")
btn = wx.Button(self, wx.ID_CLOSE)
btn.SetHelpText("Close window")
btn.SetDefault()
btnsizer.AddButton(btn)
btn = wx.Button(self, wx.ID_CANCEL)
btn.SetHelpText("The Cancel button cnacels the dialog. (Cool, huh?)")
btnsizer.AddButton(btn)
btnsizer.Realize()
sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5)