include wx/msw/missing.h after wx/msw/private.h, otherwise we get warnings when compiling without PCH (replaces patch 1674510)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-03-16 00:56:28 +00:00
parent e6733873f5
commit a6c2e2c765
5 changed files with 6 additions and 12 deletions

View File

@@ -16,9 +16,6 @@
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#ifdef __WXMSW__
#include "wx/msw/missing.h"
#endif
#include "wx/intl.h"
#include "wx/log.h"
#include "wx/utils.h"
@@ -29,10 +26,6 @@
#if wxUSE_WCHAR_T
#ifdef __WINDOWS__
#include "wx/msw/private.h"
#endif
#ifndef __WXWINCE__
#include <errno.h>
#endif
@@ -42,6 +35,8 @@
#include <stdlib.h>
#if defined(__WIN32__) && !defined(__WXMICROWIN__)
#include "wx/msw/private.h"
#include "wx/msw/missing.h"
#define wxHAVE_WIN32_MB2WC
#endif