]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/spinctrl_osx.cpp
Update OpenVMS compile support
[wxWidgets.git] / src / osx / spinctrl_osx.cpp
index 8e7042d10e88528f501dbb3502480acf4f52bb68..a6b733ae0ab3f728262e141fa98c31b65e43a583 100644 (file)
@@ -281,10 +281,8 @@ wxSpinCtrl::~wxSpinCtrl()
     // delete the controls now, don't leave them alive even though they would
     // still be eventually deleted by our parent - but it will be too late, the
     // user code expects them to be gone now
-    delete m_text;
-    m_text = NULL ;
-    delete m_btn;
-    m_btn = NULL ;
+    wxDELETE(m_text);
+    wxDELETE(m_btn);
 }
 
 // ----------------------------------------------------------------------------