]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/app.cpp
EXPORTED an array to quiet the DLL compilation
[wxWidgets.git] / src / msw / app.cpp
index 145aa72a911d4542d8cc482cc8fbd60d7b5f9ccc..76ef09c046d5cf9d56484e472a82ec3b028fa1c1 100644 (file)
@@ -19,7 +19,6 @@
 
 #ifdef __GNUG__
     #pragma implementation "app.h"
-    #pragma implementation "appbase.h"
 #endif
 
 // For compilers that support precompilation, includes "wx.h".
@@ -44,8 +43,8 @@
     #include "wx/msgdlg.h"
     #include "wx/intl.h"
     #include "wx/dynarray.h"
-#   include "wx/wxchar.h"
-#   include "wx/icon.h"
+    #include "wx/wxchar.h"
+    #include "wx/icon.h"
 #endif
 
 #include "wx/log.h"
@@ -924,28 +923,6 @@ bool wxApp::ProcessIdle()
     return event.MoreRequested();
 }
 
-void wxApp::ProcessPendingEvents()
-{
-#if wxUSE_THREADS
-    // ensure that we're the only thread to modify the pending events list
-    wxCriticalSectionLocker locker(*wxPendingEventsLocker);
-#endif
-
-    if ( !wxPendingEvents )
-        return;
-
-    wxNode *node = wxPendingEvents->First();
-    while (node)
-    {
-        wxEvtHandler *handler = (wxEvtHandler *)node->Data();
-
-        handler->ProcessPendingEvents();
-
-        delete node;
-        node = wxPendingEvents->First();
-    }
-}
-
 void wxApp::ExitMainLoop()
 {
     m_keepGoing = FALSE;