]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't include all wx/xxx/webviewhistoryitem_xxx.h headers.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 30 Nov 2011 10:21:43 +0000 (10:21 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 30 Nov 2011 10:21:43 +0000 (10:21 +0000)
Only one of these headers is available for each platform so include at most
one of them.

Closes #13705.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/webview.h

index d84aac397eb509cb8125a9311db7b47c80a8972e..0a70b74ee058edad9de81c7bd4940c62876167d3 100644 (file)
 #include "wx/sharedptr.h"
 #include "wx/vector.h"
 
-#include "wx/osx/webviewhistoryitem_webkit.h"
-#include "wx/gtk/webviewhistoryitem_webkit.h"
-#include "wx/msw/webviewhistoryitem_ie.h"
+#if defined(__WXOSX__)
+    #include "wx/osx/webviewhistoryitem_webkit.h"
+#elif defined(__WXGTK__)
+    #include "wx/gtk/webviewhistoryitem_webkit.h"
+#elif defined(__WXMSW__)
+    #include "wx/msw/webviewhistoryitem_ie.h"
+#else
+    #error "wxWebView not implemented on this platform."
+#endif
 
 class wxFSFile;
 class wxFileSystem;