build fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55005 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett 2008-08-07 06:51:26 +00:00
parent f1d5aa4eca
commit 28c45c53a6
2 changed files with 2 additions and 3 deletions

View File

@ -201,8 +201,7 @@ bool TextEditView::OnClose(bool deleteWindow)
if (deleteWindow)
{
wxDELETE(m_frame)
return true;
wxDELETE(m_frame);
}
return true;
}

View File

@ -115,7 +115,7 @@ bool MyApp::OnInit(void)
int MyApp::OnExit(void)
{
wxDELETE(m_docManager)
wxDELETE(m_docManager);
return 0;
}