Corrected the name of EVT_WEB_VIEW_ERROR event table macro.

It was mistakenly spelt EVT_WEB_VIEW_ERRROR.

Closes #13772.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70038 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-12-17 23:52:40 +00:00
parent 65ea1c9dca
commit ecc610f1af
2 changed files with 3 additions and 3 deletions

View File

@@ -225,7 +225,7 @@ typedef void (wxEvtHandler::*wxWebViewEventFunction)
wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_LOADED, id, \ wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_LOADED, id, \
wxWebViewEventHandler(fn)) wxWebViewEventHandler(fn))
#define EVT_WEB_VIEW_ERRROR(id, fn) \ #define EVT_WEB_VIEW_ERROR(id, fn) \
wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_ERROR, id, \ wx__DECLARE_EVT1(wxEVT_COMMAND_WEB_VIEW_ERROR, id, \
wxWebViewEventHandler(fn)) wxWebViewEventHandler(fn))

View File

@@ -228,7 +228,7 @@ public:
Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document
is fully loaded and displayed. Note that if the displayed HTML document has is fully loaded and displayed. Note that if the displayed HTML document has
several frames, one such event will be generated per frame. several frames, one such event will be generated per frame.
@event{EVT_WEB_VIEW_ERRROR(id, func)} @event{EVT_WEB_VIEW_ERROR(id, func)}
Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation
error occurs. error occurs.
The integer associated with this event will be a wxWebNavigationError item. The integer associated with this event will be a wxWebNavigationError item.
@@ -609,7 +609,7 @@ public:
Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document Process a @c wxEVT_COMMAND_WEB_VIEW_LOADED event generated when the document
is fully loaded and displayed. Note that if the displayed HTML document has is fully loaded and displayed. Note that if the displayed HTML document has
several frames, one such event will be generated per frame. several frames, one such event will be generated per frame.
@event{EVT_WEB_VIEW_ERRROR(id, func)} @event{EVT_WEB_VIEW_ERROR(id, func)}
Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation Process a @c wxEVT_COMMAND_WEB_VIEW_ERROR event generated when a navigation
error occurs. error occurs.
The integer associated with this event will be a wxWebNavigationError item. The integer associated with this event will be a wxWebNavigationError item.