]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/evtloop.cpp
WinCE warning fixes.
[wxWidgets.git] / src / gtk / evtloop.cpp
index 9ff74e58c315aa606e8db50963fd67c4cdf8db47..acca1472fe639a9c0f136529e9c88e2f9216232c 100644 (file)
@@ -62,18 +62,13 @@ private:
 // wxEventLoop running and exiting
 // ----------------------------------------------------------------------------
 
-wxEventLoop *wxEventLoop::ms_activeLoop = NULL;
+wxEventLoop *wxEventLoopBase::ms_activeLoop = NULL;
 
 wxEventLoop::~wxEventLoop()
 {
     wxASSERT_MSG( !m_impl, _T("should have been deleted in Run()") );
 }
 
-bool wxEventLoop::IsRunning() const
-{
-    return m_impl != NULL;
-}
-
 int wxEventLoop::Run()
 {
     // event loops are not recursive, you need to create another loop!