renamed AddSubPage() with pos parameter to InsertSubPage()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37316 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-02-05 12:27:20 +00:00
parent 68df211fae
commit 9d5371c60b
4 changed files with 38 additions and 27 deletions

View File

@@ -125,11 +125,11 @@ bool wxTreebook::InsertPage(size_t pagePos,
return DoInsertPage(pagePos, page, text, bSelect, imageId);
}
bool wxTreebook::AddSubPage(size_t pagePos,
wxWindow *page,
const wxString& text,
bool bSelect,
int imageId)
bool wxTreebook::InsertSubPage(size_t pagePos,
wxWindow *page,
const wxString& text,
bool bSelect,
int imageId)
{
return DoInsertSubPage(pagePos, page, text, bSelect, imageId);
}