]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/statbar.cpp
Default border style for a control on PPC/Smartphone is wxBORDER_SIMPLE
[wxWidgets.git] / src / common / statbar.cpp
index 1a0b98a5613cece9f24ffc296b7a104ad439a285..0544a98b67530e815a1049dfb1ccbed8dfdfb6b4 100644 (file)
@@ -29,6 +29,7 @@
 #endif
 
 #ifndef WX_PRECOMP
+    #include "wx/frame.h"
     #include "wx/statusbr.h"
 #endif //WX_PRECOMP
 
@@ -60,7 +61,7 @@ wxStatusBarBase::~wxStatusBarBase()
 {
     FreeWidths();
     FreeStacks();
-    InitStyles();
+    FreeStyles();
 
     // notify the frame that it doesn't have a status bar any longer to avoid
     // dangling pointers
@@ -284,12 +285,12 @@ void wxStatusBarBase::InitStacks()
 
 void wxStatusBarBase::FreeStacks()
 {
-    if(!m_statusTextStacks) return;
-    size_t i;
+    if ( !m_statusTextStacks )
+        return;
 
-    for(i = 0; i < (size_t)m_nFields; ++i)
+    for ( size_t i = 0; i < (size_t)m_nFields; ++i )
     {
-        if(m_statusTextStacks[i])
+        if ( m_statusTextStacks[i] )
         {
             wxListString& t = *m_statusTextStacks[i];
             WX_CLEAR_LIST(wxListString, t);