From: Vadim Zeitlin Date: Fri, 23 Mar 2007 14:13:47 +0000 (+0000) Subject: compilation fix after last commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/15506ffe1551b1c830eea6d4808abf2a942b55b8 compilation fix after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk1/window.cpp b/src/gtk1/window.cpp index 7405f73826..9e328dbcde 100644 --- a/src/gtk1/window.cpp +++ b/src/gtk1/window.cpp @@ -3205,7 +3205,7 @@ bool wxWindowGTK::Show( bool show ) void wxWindowGTK::DoEnable( bool enable ) { - wxCHECK_MSG( (m_widget != NULL), false, wxT("invalid window") ); + wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); gtk_widget_set_sensitive( m_widget, enable ); if ( m_wxwindow )