From 6fdda829b49cc53a6c8f82b4b6009094591b4d10 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 4 Jan 2013 20:13:03 +0000 Subject: [PATCH] Including wx/msw/missing.h to define INVALID_FILE_ATTRIBUTES for MSVC6. This header is also needed in filename.cpp (see r73317 for a previous commit fixing the same problem in filefn.cpp). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 17f40be930..6434bcbaef 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -99,7 +99,8 @@ #endif #ifdef __WINDOWS__ -#include "wx/msw/private.h" + #include "wx/msw/private.h" + #include "wx/msw/missing.h" #endif #if defined(__WXMAC__) -- 2.47.2