Call the base class version of OnClose() in the derived classes instead of
duplicating it.
Closes #11363.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65064
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// Clean up windows used for displaying the view.
bool DrawingView::OnClose(bool deleteWindow)
{
- if ( !GetDocument()->Close() )
+ if ( !wxView::OnClose(deleteWindow) )
return false;
Activate(false);
bool TextEditView::OnClose(bool deleteWindow)
{
- if ( !GetDocument()->Close() )
+ if ( !wxView::OnClose(deleteWindow) )
return false;
Activate(false);
bool ImageView::OnClose(bool deleteWindow)
{
- if ( !GetDocument()->Close() )
+ if ( !wxView::OnClose(deleteWindow) )
return false;
Activate(false);