From: Julian Smart Date: Tue, 13 Jan 2004 13:32:07 +0000 (+0000) Subject: Must have event.Skip() in OnSize for wxUniv X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/83ae4c616cd965afda87c4bff6509dba3b3254ab?hp=59455c67d444c12f6d6a59e0c16528554c8b4c30 Must have event.Skip() in OnSize for wxUniv git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/samples/ogl/ogledit/ogledit.cpp b/contrib/samples/ogl/ogledit/ogledit.cpp index 44226b4ac0..b69f7dece3 100644 --- a/contrib/samples/ogl/ogledit/ogledit.cpp +++ b/contrib/samples/ogl/ogledit/ogledit.cpp @@ -154,7 +154,7 @@ MyFrame::MyFrame(wxDocManager *manager, wxFrame *frame, const wxString& title, editMenu = NULL; } -void MyFrame::OnSize(wxSizeEvent& WXUNUSED(event)) +void MyFrame::OnSize(wxSizeEvent& event) { if (canvas && palette) { @@ -172,6 +172,7 @@ void MyFrame::OnSize(wxSizeEvent& WXUNUSED(event)) palette->SetSize(paletteX, paletteY, paletteW, paletteH); canvas->SetSize(canvasX, canvasY, canvasW, canvasH); } + event.Skip(); } void MyFrame::OnCloseWindow(wxCloseEvent& event) diff --git a/contrib/samples/ogl/studio/mainfrm.cpp b/contrib/samples/ogl/studio/mainfrm.cpp index 4000fc7e02..3f4ab32ae5 100644 --- a/contrib/samples/ogl/studio/mainfrm.cpp +++ b/contrib/samples/ogl/studio/mainfrm.cpp @@ -141,10 +141,11 @@ void csFrame::OnCloseWindow(wxCloseEvent& event) wxDocMDIParentFrame::OnCloseWindow(event); } -void csFrame::OnSize(wxSizeEvent& WXUNUSED(event)) +void csFrame::OnSize(wxSizeEvent& event) { wxLayoutAlgorithm layout; layout.LayoutMDIFrame(this); + event.Skip(); } // Make sure the correct toolbars are showing for the active view