]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
removed extra semicolons added by previous patch (patch 1429906)
[wxWidgets.git] / src / msw / window.cpp
index ee37aeb2c73f808b2d53c05738d8ed51551157f5..703677417373e8d0b6fb3df639b0c597afae576e 100644 (file)
@@ -1359,7 +1359,7 @@ void wxWindowMSW::Thaw()
 {
     wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") );
 
-    if ( !--m_frozenness )
+    if ( --m_frozenness == 0 )
     {
         if ( IsShown() )
         {
@@ -1428,6 +1428,10 @@ void wxWindowMSW::Update()
 // a drop target
 static inline void AdjustStaticBoxZOrder(wxWindow *parent)
 {
+    // no sibling static boxes if we have no parent (ie TLW)
+    if ( !parent )
+        return;
+
     for ( wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst();
           node;
           node = node->GetNext() )