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
This commit is contained in:
David Elliott
2004-09-30 21:00:18 +00:00
parent c0b26bc2be
commit 696e933166

View File

@@ -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.
};
// ----------------------------------------------------------------------------