From: Vadim Zeitlin Date: Fri, 9 Oct 2009 13:05:32 +0000 (+0000) Subject: Compilation fix for PCH-less compilation. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f3d793069fabb42b4219faa3bcd29216c121c086 Compilation fix for PCH-less compilation. To use wxTheApp (added in r62337) we need to include wx/app.h. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/stdpaths.cpp b/src/unix/stdpaths.cpp index c127fc3d66..4089a9e06e 100644 --- a/src/unix/stdpaths.cpp +++ b/src/unix/stdpaths.cpp @@ -29,6 +29,7 @@ #include "wx/stdpaths.h" #ifndef WX_PRECOMP + #include "wx/app.h" #include "wx/wxcrt.h" #include "wx/utils.h" #endif //WX_PRECOMP