]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/webviewhistoryitem_webkit.h
Use proper format in wxGTK clipboard selection handler.
[wxWidgets.git] / include / wx / gtk / webviewhistoryitem_webkit.h
index 071f3fb9ff44904eb8fbaebfe06a2f4ab48fab64..344f601018fa9f7eee0c100d50b87d7d12228b9a 100644 (file)
 
 #include "wx/setup.h"
 
-#if wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
-
-#include "webkit/webkit.h"
+#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
 
 class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
 {
 public:
-    wxWebViewHistoryItem(const wxString& url, const wxString& title) : 
+    wxWebViewHistoryItem(const wxString& url, const wxString& title) :
                      m_url(url), m_title(title) {}
     wxString GetUrl() { return m_url; }
     wxString GetTitle() { return m_title; }
@@ -28,9 +26,9 @@ public:
 
 private:
     wxString m_url, m_title;
-    WebKitWebHistoryItem* m_histItem;
+    void* m_histItem;
 };
 
-#endif // wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
+#endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
 
 #endif // _WX_GTK_WEBVIEWHISTORYITEM_H_