From 40fa47e0d3166645b9468687eeb5d15151f3c819 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 18 Aug 2003 23:56:57 +0000 Subject: [PATCH] added missing Create() implementation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/nbkbase.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/common/nbkbase.cpp b/src/common/nbkbase.cpp index 0ca0e21941..cc158a12d5 100644 --- a/src/common/nbkbase.cpp +++ b/src/common/nbkbase.cpp @@ -60,6 +60,26 @@ void wxNotebookBase::Init() m_ownsImageList = FALSE; } +bool +wxNotebookBase::Create(wxWindow *parent, + wxWindowID id, + const wxPoint& pos, + const wxSize& size, + long style, + const wxString& name) +{ + return wxControl::Create + ( + parent, + id, + pos, + size, + style, + wxDefaultValidator, + name + ); +} + wxNotebookBase::~wxNotebookBase() { if ( m_ownsImageList ) -- 2.45.2