+void wxStaticBox::SetLabel(const wxString& label)
+{
+ wxAutoNSAutoreleasePool pool;
+ [GetNSBox() setTitle:wxNSStringWithWxString(label)];
+}
+
+wxString wxStaticBox::GetLabel() const
+{
+ wxAutoNSAutoreleasePool pool;
+ return wxStringWithNSString([GetNSBox() title]);
+}