OS/2 fixes for this week.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11015 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2001-07-13 17:42:49 +00:00
parent 2e57a9efc5
commit 893758d507
11 changed files with 498 additions and 237 deletions

View File

@@ -275,7 +275,7 @@ bool wxNotebook::DeletePage(int nPage)
// TODO: delete native widget page
delete m_aPages[nPage];
m_aPages.Remove(nPage);
m_aPages.RemoveAt(nPage);
return TRUE;
}
@@ -285,7 +285,7 @@ bool wxNotebook::RemovePage(int nPage)
{
wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, wxT("notebook page out of range") );
m_aPages.Remove(nPage);
m_aPages.RemoveAt(nPage);
return TRUE;
}