From: Vadim Zeitlin Date: Thu, 13 Oct 2011 13:19:42 +0000 (+0000) Subject: The usual fix for PCH-less compilation after the last commit. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bb8823c9587360ecca01279e428ed307f8cd57c4 The usual fix for PCH-less compilation after the last commit. Fix wxNonOwnedWindow compilation in wxGTK without PCH. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/nonownedwnd.cpp b/src/gtk/nonownedwnd.cpp index 20f05258e3..b07cdd1afb 100644 --- a/src/gtk/nonownedwnd.cpp +++ b/src/gtk/nonownedwnd.cpp @@ -24,7 +24,9 @@ #endif #ifndef WX_PRECOMP - #include "wx/string.h" + #include "wx/frame.h" // Just for wxFRAME_SHAPED. + #include "wx/nonownedwnd.h" + #include "wx/region.h" #endif // WX_PRECOMP #include "wx/gtk/private.h"