]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/layout/layout.cpp
wxSplitterWindow::ReplaceWindow() function added and documented
[wxWidgets.git] / samples / layout / layout.cpp
index e33b97fad9293f5790a621b4f87850363d81bcc1..ab66c79b015c582c5bcd5f9b0f42ed9c257f6c68 100644 (file)
@@ -244,14 +244,6 @@ void MyWindow::OnPaint(wxPaintEvent& WXUNUSED(event) )
   frame->Draw(dc,TRUE);
 }
 
-// Define the behaviour for the frame closing
-// - must delete all frames except for the main one.
-bool MyFrame::OnClose(void)
-{
-  Show(FALSE);
-
-  return TRUE;
-}
 
 SizerFrame::SizerFrame(wxFrame *frame, char *title, int x, int y, int w, int h):
   wxFrame(frame, -1, title, wxPoint(x, y), wxSize(w, h))
@@ -346,10 +338,3 @@ void SizerFrame::OnSize(wxSizeEvent& event)
   panel->Layout();
 }
 
-bool SizerFrame::OnClose(void)
-{
-  Show(FALSE);
-
-  return TRUE;
-}
-