]> git.saurik.com Git - wxWidgets.git/commitdiff
going private for m_peer to give a foundation for better encapsulation
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 18 Mar 2011 14:33:57 +0000 (14:33 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 18 Mar 2011 14:33:57 +0000 (14:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/iphone/button.mm
src/osx/iphone/glcanvas.mm
src/osx/iphone/toolbar.mm

index 275128f1915321f8bf0889073b37c78245ec80b8..cfc67b634968dfef954e71727ac1dcec87d22843 100644 (file)
@@ -32,7 +32,7 @@ wxSize wxButton::DoGetBestSize() const
 
     wxRect r ;
 
-    m_peer->GetBestRect(&r);
+    GetPeer()->GetBestRect(&r);
 
     if ( r.GetWidth() == 0 && r.GetHeight() == 0 )
     {
index ca71c5bda33fd6db03f3a7f1b9d971d2fb793c6d..432cde233b2377210601f12c866df772c96deb14 100644 (file)
@@ -397,7 +397,7 @@ bool wxGLCanvas::Create(wxWindow *parent,
             [NSNumber numberWithBool:NO], kEAGLDrawablePropertyRetainedBacking, 
             kEAGLColorFormatRGBA8, kEAGLDrawablePropertyColorFormat, nil];
             
-    m_peer = new wxWidgetIPhoneImpl( this, v );
+    SetPeer(new wxWidgetIPhoneImpl( this, v ));
 
     MacPostControlCreate(pos, size) ;
 #endif
@@ -415,7 +415,7 @@ bool wxGLCanvas::SwapBuffers()
     WXGLContext context = WXGLGetCurrentContext();
     wxCHECK_MSG(context, false, wxT("should have current context"));
 
-    wxUICustomOpenGLView* v = (wxUICustomOpenGLView*) m_peer->GetWXWidget();
+    wxUICustomOpenGLView* v = (wxUICustomOpenGLView*) GetPeer()->GetWXWidget();
     [v swapBuffers];
     return true;
 }
index c65ee34d6664cb2a45f1fcc2887990b665c24da9..64facb5d552844b264400652e1fdc83e452225a6 100644 (file)
@@ -247,7 +247,7 @@ bool wxToolBar::Create(
     }
     m_macToolbar = toolbar;
 
-    m_peer = new wxWidgetIPhoneImpl( this, toolbar );    
+    SetPeer(new wxWidgetIPhoneImpl( this, toolbar ));    
     MacPostControlCreate(pos, size) ;
 }