From: David Elliott Date: Thu, 30 Sep 2004 21:00:18 +0000 (+0000) Subject: Use struct qualifier with objc_object (it is and always will be a struct) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/696e93316671c4d473dd35db3bccae679a8e9ce9 Use struct qualifier with objc_object (it is and always will be a struct) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29569 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/html/webkit.h b/include/wx/html/webkit.h index a5258f1e99..40f72b6d28 100755 --- a/include/wx/html/webkit.h +++ b/include/wx/html/webkit.h @@ -79,9 +79,9 @@ private: wxWindowID m_windowID; wxString m_currentURL; wxString m_pageTitle; - objc_object* m_webView; - //It should be WebView, but WebView is Cocoa only, so any class which included - //this header would have to link to Cocoa, so for now use void* instead. + struct objc_object *m_webView; + //It should be WebView*, but WebView is an Objective-C class + //TODO: look into using DECLARE_WXCOCOA_OBJC_CLASS rather than this. }; // ----------------------------------------------------------------------------