bug fix for OnLinkClicked callback

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5296 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2000-01-07 19:46:28 +00:00
parent 471ed537e4
commit 95837b4d96
4 changed files with 46 additions and 2 deletions

View File

@@ -417,6 +417,7 @@ public:
PYPRIVATE;
};
IMP_PYCALLBACK__STRING(wxPyHtmlWindow, wxHtmlWindow, OnSetTitle);
void wxPyHtmlWindow::OnLinkClicked(wxHtmlLinkInfo* link) {
@@ -435,6 +436,7 @@ void wxPyHtmlWindow::base_OnLinkClicked(wxHtmlLinkInfo* link) {
%}
%name(wxHtmlWindow) class wxPyHtmlWindow : public wxScrolledWindow {
public:
wxPyHtmlWindow(wxWindow *parent, int id = -1,
@@ -467,6 +469,7 @@ public:
wxHtmlWinParser* GetParser();
void base_OnLinkClicked(wxHtmlLinkInfo* link);
void base_OnSetTitle(const char* title);
};