]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/statline.cpp
stop usign a deprecated method, and ensure that the imagelist
[wxWidgets.git] / src / generic / statline.cpp
index 122af4679991e6941c9b1a71a58af31dcbf771c3..a7e4f99dc13d3ba81e6de43848bdbf5d3cacd8d8 100644 (file)
@@ -20,9 +20,9 @@
     #pragma implementation "statline.h"
 #endif
 
+#include "wx/wxprec.h"
 #if wxUSE_STATLINE
 // For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
@@ -48,6 +48,8 @@ bool wxStaticLine::Create( wxWindow *parent,
                            long style,
                            const wxString &name)
 {
+    m_statbox = NULL;
+
     if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
         return FALSE;
 
@@ -61,6 +63,10 @@ bool wxStaticLine::Create( wxWindow *parent,
     return TRUE;
 }
 
+wxStaticLine::~wxStaticLine()
+{
+    delete m_statbox;
+}
 
 WXWidget wxStaticLine::GetMainWidget() const
 {