From: Robin Dunn Date: Mon, 20 Mar 2006 17:56:42 +0000 (+0000) Subject: Use the static method instead of the global alias X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ce1522a1f20cbbf6be1dda237304e364d98f7902 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 --- diff --git a/wxPython/demo/Dialog.py b/wxPython/demo/Dialog.py index 2ef15a0f49..7bb49f85bc 100644 --- a/wxPython/demo/Dialog.py +++ b/wxPython/demo/Dialog.py @@ -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) #---------------------------------------------------------------------------