]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix after last commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 23 Mar 2007 14:13:47 +0000 (14:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 23 Mar 2007 14:13:47 +0000 (14:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk1/window.cpp

index 7405f7382604750ad3de9d059351daa0a83dcf10..9e328dbcdef0592e005afc0c339b58ea02310f5e 100644 (file)
@@ -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 )