]> git.saurik.com Git - wxWidgets.git/commitdiff
Use the static method instead of the global alias
authorRobin Dunn <robin@alldunn.com>
Mon, 20 Mar 2006 17:56:42 +0000 (17:56 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 20 Mar 2006 17:56:42 +0000 (17:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38225 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/Dialog.py

index 2ef15a0f492e9604c69ea3863099615734d232d7..7bb49f85bc8fc8d466c56f49fc2661d744509a49 100644 (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)
 
 #---------------------------------------------------------------------------