From: Robin Dunn Date: Sat, 31 Jul 2004 04:39:49 +0000 (+0000) Subject: Fixed compilation error X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eaca2a2cfcdd82a877c966b4f702a5a460c8c4c4 Fixed compilation error git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/evtloop.h b/include/wx/evtloop.h index f3155ab6eb..bc8ea3d077 100644 --- a/include/wx/evtloop.h +++ b/include/wx/evtloop.h @@ -82,7 +82,8 @@ class WXDLLEXPORT wxEventLoop : public wxEventLoopBase { public: wxEventLoop() { m_impl = NULL; } - + virtual ~wxEventLoop(); + virtual int Run(); virtual void Exit(int rc = 0); virtual bool Pending() const; @@ -94,7 +95,7 @@ protected: wxEventLoopImpl *m_impl; DECLARE_NO_COPY_CLASS(wxEventLoop) -} + }; #endif // __WXMSW__/!__WXMSW__