mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 03:50:06 +01:00
- Reformat the documentation generator to take into account the "adv" sub-package; - Make the `sphinx_generator.py` and the `sphinxtools` package Python 3 - compliant. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
14 lines
474 B
Python
14 lines
474 B
Python
|
|
def OnAbout(self, event):
|
|
|
|
aboutInfo = wx.AboutDialogInfo()
|
|
aboutInfo.SetName("MyApp")
|
|
aboutInfo.SetVersion(MY_APP_VERSION_STRING)
|
|
aboutInfo.SetDescription(_("My wxPython-based application!"))
|
|
aboutInfo.SetCopyright("(C) 1992-2012")
|
|
aboutInfo.SetWebSite("http:#myapp.org")
|
|
aboutInfo.AddDeveloper("My Self")
|
|
|
|
wx.AboutBox(aboutInfo)
|
|
|