]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/button.mm
Fixed saving dialog's filter index always being -1 with wxOSX-Cocoa.
[wxWidgets.git] / src / osx / cocoa / button.mm
index 8e25f09c48e46210cfa193ca8e53d737a0ade4f4..3829d7c8cb27fbc0f61b116b467a03be9c35ea0a 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     1998-01-01
-// RCS-ID:      $Id: button.cpp 54845 2008-07-30 14:52:41Z SC $
+// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -32,7 +32,7 @@ wxSize wxButton::DoGetBestSize() const
         return wxSize( 23 , 23 ) ;
 
     wxRect r ;
-    m_peer->GetBestRect(&r);
+    GetPeer()->GetBestRect(&r);
 
     wxSize sz = r.GetSize();
     sz.x  = sz.x  + MacGetLeftBorderSize() +
@@ -130,6 +130,7 @@ public:
         wxWidgetCocoaImpl::SetBitmap(bitmap);
     }
 
+#if wxUSE_MARKUP
     virtual void SetLabelMarkup(const wxString& markup)
     {
         wxMarkupToAttrString toAttr(GetWXPeer(), markup);
@@ -146,6 +147,7 @@ public:
 
         [GetNSButton() setAttributedTitle:attrString];
     }
+#endif // wxUSE_MARKUP
 
     void SetPressedBitmap( const wxBitmap& bitmap )
     {