+void wxNotebook::AdjustPageSize(wxNotebookPage *page)
+{
+ wxCHECK_RET( page, _T("NULL page in wxNotebook::AdjustPageSize") );
+
+ RECT rc;
+ rc.left =
+ rc.top = 0;
+
+ // get the page size from the notebook size
+ GetSize((int *)&rc.right, (int *)&rc.bottom);
+ TabCtrl_AdjustRect(m_hwnd, FALSE, &rc);
+
+ page->SetSize(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top);
+}
+