]> git.saurik.com Git - wxWidgets.git/commitdiff
warning fixes
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Aug 2003 22:09:34 +0000 (22:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Aug 2003 22:09:34 +0000 (22:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23181 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/bookctrl.cpp

index cdd90bf2e04df33f9befc60633a25c1528e4c2b3..b04136183e26f69943df4b3cc2a638dd66e55c05 100644 (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,