added missing Create() implementation
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 18 Aug 2003 23:56:57 +0000 (23:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 18 Aug 2003 23:56:57 +0000 (23:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/nbkbase.cpp

index 0ca0e21941e9c3c807a966d8d27983ace4fc73f8..cc158a12d5109f453ac753ba61e756d52d5d99aa 100644 (file)
@@ -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 )