From: Vadim Zeitlin Date: Mon, 5 Feb 2007 18:19:32 +0000 (+0000) Subject: corrected WXDLLIMPEXP_ declaration for wxEventBlocker: it's part of core, not base X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b483f5fed274a9152faab05b0ebb4e5f5158c506?ds=inline corrected WXDLLIMPEXP_ declaration for wxEventBlocker: it's part of core, not base git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44366 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/event.h b/include/wx/event.h index a575c3ab23..f7e28edb76 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -2583,7 +2583,7 @@ typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&); // wxEventBlocker: helper class to temporarily disable event handling for a window // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_BASE wxEventBlocker : public wxEvtHandler +class WXDLLIMPEXP_CORE wxEventBlocker : public wxEvtHandler { public: wxEventBlocker(wxWindow *win, wxEventType type = wxEVT_ANY);