git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10593
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
public:
MySplitterWindow(wxFrame *parent, wxWindowID id)
{
public:
MySplitterWindow(wxFrame *parent, wxWindowID id)
- : wxSplitterWindow(parent, id, wxDefaultPosition, wxDefaultSize, wxSP_3D | wxSP_LIVE_UPDATE)
+ : wxSplitterWindow(parent, id, wxDefaultPosition, wxDefaultSize,
+ wxSP_3D | wxSP_LIVE_UPDATE | wxCLIP_CHILDREN)
END_EVENT_TABLE()
// My frame constructor
END_EVENT_TABLE()
// My frame constructor
-MyFrame::MyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size):
- wxFrame(frame, SPLITTER_FRAME, title, pos, size)
+MyFrame::MyFrame(wxFrame* frame, const wxString& title,
+ const wxPoint& pos, const wxSize& size)
+ : wxFrame(frame, SPLITTER_FRAME, title, pos, size,
+ wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE)