]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/button.cpp
going private for m_peer to give a foundation for better encapsulation
[wxWidgets.git] / src / osx / carbon / button.cpp
index ea77565438ec6650021bb88c0f863d26711c1f4c..2924a24614c9313aa4255fce5f12387567d94984 100644 (file)
@@ -55,7 +55,7 @@ wxSize wxButton::DoGetBestSize() const
 
 #if wxOSX_USE_CARBON
     Rect    bestsize = { 0 , 0 , 0 , 0 } ;
-    m_peer->GetBestRect( &bestsize ) ;
+    GetPeer()->GetBestRect( &bestsize ) ;
 
     int wBtn;
     if ( EmptyRect( &bestsize ) || ( GetWindowStyle() & wxBU_EXACTFIT) )
@@ -63,7 +63,7 @@ wxSize wxButton::DoGetBestSize() const
         Point bounds;
 
         ControlFontStyleRec controlFont;
-        OSStatus err = m_peer->GetData<ControlFontStyleRec>( kControlEntireControl, kControlFontStyleTag, &controlFont );
+        OSStatus err = GetPeer()->GetData<ControlFontStyleRec>( kControlEntireControl, kControlFontStyleTag, &controlFont );
         verify_noerr( err );
 
         // GetThemeTextDimensions will cache strings and the documentation