]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/window.cpp
Calling a Refresh() before the window is created no longer
[wxWidgets.git] / src / gtk / window.cpp
index 160d98594c92bff8176e361191a441ecc2d1bb18..a7ccbe712a7ce210eaa932b524be5639ba299a89 100644 (file)
@@ -2776,8 +2776,7 @@ void wxWindow::WarpPointer( int x, int y )
 
 void wxWindow::Refresh( bool eraseBackground, const wxRect *rect )
 {
-    wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
-
+    if (!m_widget) return;
     if (!m_widget->window) return;
 
     if (eraseBackground && m_wxwindow && m_wxwindow->window)