From cce4b3fe2b05e1d928d7a5930c33c624b2f3a667 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 27 Jan 1999 15:17:24 +0000 Subject: [PATCH] made wxSplitterWindow::SplitXXX() virtual git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1495 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/splitter.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/wx/generic/splitter.h b/include/wx/generic/splitter.h index 50781e4424..d8ffcc0f37 100644 --- a/include/wx/generic/splitter.h +++ b/include/wx/generic/splitter.h @@ -83,12 +83,12 @@ public: // A sashPosition of 0 means choose a default sash position, // negative sashPosition specifies the size of right/lower pane as it's // absolute value rather than the size of left/upper pane. - bool SplitVertically(wxWindow *window1, - wxWindow *window2, - int sashPosition = 0); - bool SplitHorizontally(wxWindow *window1, - wxWindow *window2, - int sashPosition = 0); + virtual bool SplitVertically(wxWindow *window1, + wxWindow *window2, + int sashPosition = 0); + virtual bool SplitHorizontally(wxWindow *window1, + wxWindow *window2, + int sashPosition = 0); // Removes the specified (or second) window from the view // Doesn't actually delete the window.