Fixes for AboutDialogInfo.

Most of the properties were missing because the getter methods were not documented so no wrappers were being generated for them.
This commit is contained in:
Robin Dunn
2016-07-14 11:57:00 -07:00
parent eb6d056a85
commit 1a5dbab03c
4 changed files with 38 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ class TestPanel(wx.Panel):
info = wx.adv.AboutDialogInfo()
info.Name = "Hello World"
info.Version = "1.2.3"
info.Copyright = "(C) 2006 Programmers and Coders Everywhere"
info.Copyright = "(c) 2016 Programmers and Coders Everywhere"
info.Description = wordwrap(
"A \"hello world\" program is a software program that prints out "
"\"Hello world!\" on a display device. It is used in many introductory "