]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/webviewhistoryitem_webkit.h
Don't use "Cancel" button in the about dialog of the listctrl sample.
[wxWidgets.git] / include / wx / osx / webviewhistoryitem_webkit.h
index 97a23d265e6d1543a9acab93333cf08ee5fe2b85..deeea9ba418c1580beefd33a3c14741bdee2ce6b 100644 (file)
 
 #include "wx/setup.h"
 
-#if wxUSE_WEBVIEW_WEBKIT && (defined(__WXOSX_COCOA__) \
-                         ||  defined(__WXOSX_CARBON__))
+#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && (defined(__WXOSX_COCOA__) \
+                                          ||  defined(__WXOSX_CARBON__))
 
-class WXDLLIMPEXP_WEB wxWebViewHistoryItem
+#include "wx/osx/core/objcid.h"
+
+class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
 {
 public:
     wxWebViewHistoryItem(const wxString& url, const wxString& title) :
@@ -27,9 +29,9 @@ public:
 
 private:
     wxString m_url, m_title;
-    struct objc_object *m_histItem;
+    wxObjCID m_histItem;
 };
 
-#endif // wxUSE_WEBVIEW_WEBKIT && defined(__WXOSX_MAC__)
+#endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT
 
 #endif // _WX_OSX_WEBVIEWHISTORYITEM_H_