Fixed compile error in gtk/dc.cpp (L.88); also menu problem in msw/mdi.cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@663 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-09-04 11:24:30 +00:00
parent cf7a7e133b
commit db5d183b03
3 changed files with 4 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ wxDC::~wxDC(void)
bool wxDC::Ok(void) const
{
wxASSERT_MSG( !ok, "invalid display context" );
wxASSERT_MSG( m_ok, "invalid display context" );
return m_ok;
}