Various compilation fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59091 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2009-02-22 19:09:49 +00:00
parent f0e0116ea8
commit e39b5fa457
3 changed files with 5 additions and 3 deletions

View File

@@ -402,9 +402,10 @@ bool wxGUIEventLoop::YieldFor(long eventsToProcess)
// If they are pending events, we must process them.
//
if (wxTheApp)
{
wxTheApp->ProcessPendingEvents();
HandleSockets();
wxTheApp->HandleSockets();
}
//
// Let the logs be flashed again

View File

@@ -23,6 +23,7 @@
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/msgdlg.h"
#include "wx/filename.h"
#include "wx/intl.h"
#include "wx/log.h"
#include "wx/app.h"

View File

@@ -221,7 +221,7 @@ wxRegion::wxRegion(const wxRect& rRect)
);
} // end of wxRegion::wxRegion
wxRegion::wxRegion(size_t n, const wxPoint *points, int WXUNUSED(fillStyle))
wxRegion::wxRegion(size_t n, const wxPoint *points, wxPolygonFillMode WXUNUSED(fillStyle))
{
// TO DO
}