Use the static method instead of the global alias

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38225 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-03-20 17:56:42 +00:00
parent a6c355d270
commit ce1522a1f2

View File

@ -5,7 +5,7 @@ import wx
# Create and set a help provider. Normally you would do this in
# the app's OnInit as it must be done before any SetHelpText calls.
provider = wx.SimpleHelpProvider()
wx.HelpProvider_Set(provider)
wx.HelpProvider.Set(provider)
#---------------------------------------------------------------------------