]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/rearrangectrl.cpp
build fixes for wxUSE_IPV6==1 under Windows
[wxWidgets.git] / src / common / rearrangectrl.cpp
index 6c9c0c11de948ceb3311c72dbfffd4acff7ff73e..cda19dd67fabf4f0d21968ce4d4e52c6f43e3b0c 100644 (file)
@@ -24,6 +24,9 @@
 #endif
 
 #ifndef WX_PRECOMP
+    #include "wx/button.h"
+    #include "wx/stattext.h"
+    #include "wx/sizer.h"
 #endif // WX_PRECOMP
 
 #include "wx/rearrangectrl.h"
@@ -137,11 +140,10 @@ void wxRearrangeList::OnCheck(wxCommandEvent& event)
     // update the internal state to match the new item state
     const int n = event.GetInt();
 
-    const bool checked = IsChecked(n);
-    wxASSERT_MSG( (m_order[n] >= 0) == !checked,
-                  "discrepancy between internal state and GUI" );
-
     m_order[n] = ~m_order[n];
+
+    wxASSERT_MSG( (m_order[n] >= 0) == IsChecked(n),
+                  "discrepancy between internal state and GUI" );
 }
 
 // ============================================================================