From 7356db934c9c7097982f397fae00591aa7e40568 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 16 May 2003 17:58:48 +0000 Subject: [PATCH] Fixed parameter types for the wrappers git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/help.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/src/help.i b/wxPython/src/help.i index 54f431b47c..3d2ad7bc78 100644 --- a/wxPython/src/help.i +++ b/wxPython/src/help.i @@ -105,8 +105,8 @@ public: // Virtuals... wxString GetHelp(const wxWindow *window); - bool ShowHelp(wxWindowBase *window); - void AddHelp(wxWindowBase *window, const wxString& text); + bool ShowHelp(wxWindow *window); + void AddHelp(wxWindow *window, const wxString& text); %name(AddHelpById)void AddHelp(wxWindowID id, const wxString& text); %addmethods { void Destroy() { delete self; } }