]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed compilation error
authorRobin Dunn <robin@alldunn.com>
Sat, 31 Jul 2004 04:39:49 +0000 (04:39 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 31 Jul 2004 04:39:49 +0000 (04:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/evtloop.h

index f3155ab6eb5a9a53943f686d71f014dada679e2d..bc8ea3d0771e1366980c8e0089cb36264400673d 100644 (file)
@@ -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__