+wxString wxButton::GetLabel() const
+{
+ return wxStringWithNSString([GetNSButton() title]);
+}
+
+void wxButton::SetLabel(const wxString& label)
+{
+ [GetNSButton() setTitle:wxNSStringWithWxString(wxStripMenuCodes(label))];
+}
+
+wxSize wxButtonBase::GetDefaultSize()
+{
+ // FIXME: stub
+ return wxDefaultSize;
+}
+