From: Vadim Zeitlin Date: Fri, 20 Apr 2007 01:39:17 +0000 (+0000) Subject: corrected DLL export declaration of wxTimerEvent to fix VC++ DLL build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/92c6baaff2881efa626c0cd3866cb8215e95e729 corrected DLL export declaration of wxTimerEvent to fix VC++ DLL build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/timer.h b/include/wx/timer.h index 1a5d5d70f8..346b98deee 100644 --- a/include/wx/timer.h +++ b/include/wx/timer.h @@ -149,7 +149,7 @@ private: // wxTimerEvent // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxTimerEvent : public wxEvent +class WXDLLIMPEXP_BASE wxTimerEvent : public wxEvent { public: wxTimerEvent(int timerid = 0, int interval = 0) : wxEvent(timerid)