Add premixed InspectableApp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@44369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-02-05 21:18:31 +00:00
parent dde243668f
commit a8e358c072

View File

@@ -75,3 +75,14 @@ class InspectionMixin(object):
#---------------------------------------------------------------------------
class InspectableApp(wx.App, InspectionMixin):
"""
A simple mix of wx.App and InspectionMixin that can be used stand-alone.
"""
def OnInit(self):
self.Init()
return True
#---------------------------------------------------------------------------