warning fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23181 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-08-24 22:09:34 +00:00
parent 9698d2445d
commit f7f97bf31c

View File

@ -140,9 +140,9 @@ wxSize wxBookCtrl::DoGetBestSize() const
bool
wxBookCtrl::InsertPage(size_t nPage,
wxWindow *page,
const wxString& text,
bool bSelect,
int imageId)
const wxString& WXUNUSED(text),
bool WXUNUSED(bSelect),
int WXUNUSED(imageId))
{
wxCHECK_MSG( page, false, _T("NULL page in wxBookCtrl::InsertPage()") );
wxCHECK_MSG( nPage <= m_pages.size(), false,