]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/radiobut.mm
test undividable words
[wxWidgets.git] / src / cocoa / radiobut.mm
index b3916b716b697f496285acc5e0b716a1369cb5f0..d486f62aded0866133275e489cbe0c125fbbe01d 100644 (file)
@@ -15,6 +15,7 @@
 
 #import <AppKit/NSButton.h>
 #include "wx/cocoa/string.h"
+#include "wx/cocoa/autorelease.h"
 
 IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl)
 // wxRadioButtonBase == wxControl
@@ -30,6 +31,7 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID winid,
            const wxValidator& validator,
            const wxString& name)
 {
+    wxAutoNSAutoreleasePool pool;
     if(!CreateControl(parent,winid,pos,size,style,validator,name))
         return false;
     m_cocoaNSView = NULL;
@@ -47,8 +49,7 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID winid,
 
 wxRadioButton::~wxRadioButton()
 {
-    CocoaRemoveFromParent();
-    SetNSButton(NULL);
+    DisassociateNSButton(m_cocoaNSView);
 }
 
 void wxRadioButton::SetValue(bool)