]> git.saurik.com Git - wxWidgets.git/commitdiff
Use struct qualifier with objc_object (it is and always will be a struct)
authorDavid Elliott <dfe@tgwbd.org>
Thu, 30 Sep 2004 21:00:18 +0000 (21:00 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Thu, 30 Sep 2004 21:00:18 +0000 (21:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29569 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/webkit.h

index a5258f1e995c01297726d950d8c00dd2e182cebc..40f72b6d28960305846a92622318b5336b32cf61 100755 (executable)
@@ -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.
 };
 
 // ----------------------------------------------------------------------------