don't include files which may not exist in source release for a specific platform, fixes #13746

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69981 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2011-12-11 05:36:52 +00:00
parent a4a06df3b4
commit 91614f1aa3

View File

@@ -18,9 +18,13 @@
#include "wx/webview.h"
#if defined(__WXOSX_COCOA__) || defined(__WXOSX_CARBON__)
#include "wx/osx/webview_webkit.h"
#elif defined(__WXGTK__)
#include "wx/gtk/webview_webkit.h"
#elif defined(__WXMSW__)
#include "wx/msw/webview_ie.h"
#endif
// DLL options compatibility check:
#include "wx/app.h"