]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/notebook.cpp
Added OS/2 patches to wxGTK.
[wxWidgets.git] / src / stubs / notebook.cpp
index 233bc5639bdefcf428b1fe3f02596772538389ef..f7ee49cd5d09c1aec3707f8d9685a54308bb94ba 100644 (file)
@@ -202,6 +202,16 @@ bool wxNotebook::DeletePage(int nPage)
     return TRUE;
 }
 
+// remove one page from the notebook, without deleting the window
+bool wxNotebook::RemovePage(int nPage)
+{
+    wxCHECK( IS_VALID_PAGE(nPage), FALSE );
+
+    m_aPages.Remove(nPage);
+
+    return TRUE;
+}
+
 // remove all pages
 bool wxNotebook::DeleteAllPages()
 {
@@ -365,3 +375,8 @@ void wxNotebook::ChangePage(int nOldSel, int nSel)
     m_nSelection = nSel;
 }
 
+void wxNotebook::SetTabSize(const wxSize& sz)
+{
+    // TODO
+}
+