From eaca2a2cfcdd82a877c966b4f702a5a460c8c4c4 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 31 Jul 2004 04:39:49 +0000 Subject: [PATCH] Fixed compilation error git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/evtloop.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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__