]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing osx_cocoa
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 11 Aug 2011 08:14:37 +0000 (08:14 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 11 Aug 2011 08:14:37 +0000 (08:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68634 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/webview_webkit.mm

index b99504e125b1fec6f94f89d2d89dd1e90d3692dc..8c88764884d803195346e9d8a4ea3686e405884b 100644 (file)
@@ -326,6 +326,7 @@ bool wxWebViewWebKit::Create(wxWindow *parent,
 {
     m_busy = false;
 
+    DontCreatePeer();
     wxControl::Create(parent, winID, pos, size, style, wxDefaultValidator, name);
 
 #if wxOSX_USE_CARBON
@@ -348,7 +349,7 @@ bool wxWebViewWebKit::Create(wxWindow *parent,
     m_webView = [[WebView alloc] initWithFrame:r
                                      frameName:@"webkitFrame"
                                      groupName:@"webkitGroup"];
-    m_peer = new wxWidgetCocoaImpl( this, m_webView );
+    SetPeer(new wxWidgetCocoaImpl( this, m_webView ));
 #endif
 
     MacPostControlCreate(pos, size);