From: Vadim Zeitlin Date: Sun, 24 Aug 2003 22:09:34 +0000 (+0000) Subject: warning fixes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f7f97bf31cf094c5970ee7cdeae5cc9becd877e4 warning fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23181 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/bookctrl.cpp b/src/common/bookctrl.cpp index cdd90bf2e0..b04136183e 100644 --- a/src/common/bookctrl.cpp +++ b/src/common/bookctrl.cpp @@ -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,