From 32a2c06eeded8b7e9b56e59189c29458211ec5ee Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 9 Apr 2007 12:13:54 +0000 Subject: [PATCH] fix unused parameter warning introduced by last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45350 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/vscroll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/vscroll.h b/include/wx/vscroll.h index 71679937ae..f5b0a2fc5b 100644 --- a/include/wx/vscroll.h +++ b/include/wx/vscroll.h @@ -621,7 +621,7 @@ protected: // unless the code has been updated to override OnGetRowHeight() instead, // this function must be overridden in the derived class and it should // return the height of the given row in pixels - virtual wxCoord OnGetLineHeight(size_t n) const + virtual wxCoord OnGetLineHeight(size_t WXUNUSED(n)) const { wxFAIL_MSG( _T("must be overridden if OnGetRowHeight() isn't!") ); -- 2.45.2