]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/controls/gridtest.cpp
Corrected top-level object layout in paragraphs
[wxWidgets.git] / tests / controls / gridtest.cpp
index a871ad9e7a774cc464e556682f3c706d2f6ba7fa..aea226aa2b2dac6f6147c46e240220c6fb1d5542 100644 (file)
@@ -120,6 +120,18 @@ void GridTestCase::setUp()
 
 void GridTestCase::tearDown()
 {
+    // This is just a hack to continue the rest of the tests to run: if we
+    // destroy the header control while it has capture, this results in an
+    // assert failure and while handling an exception from it more bad things
+    // happen (as it's thrown from a dtor), resulting in simply aborting
+    // everything. So ensure that it doesn't have capture in any case.
+    //
+    // Of course, the right thing to do would be to understand why does it
+    // still have capture when the grid is destroyed sometimes.
+    wxWindow* const win = wxWindow::GetCapture();
+    if ( win )
+        win->ReleaseMouse();
+
     wxDELETE(m_grid);
 }