From: Vadim Zeitlin Date: Sun, 3 Mar 2013 22:44:14 +0000 (+0000) Subject: Fix hundreds of unused parameter warnings in wxOSX build. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/00dee70d12585a32b92a135cfa0c4b2402a0085f Fix hundreds of unused parameter warnings in wxOSX build. Comment out the name of the parameter in the recently added SetupTabs(). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73598 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/osx/core/private.h b/include/wx/osx/core/private.h index e8dffa3825..0bf016b71f 100644 --- a/include/wx/osx/core/private.h +++ b/include/wx/osx/core/private.h @@ -311,7 +311,7 @@ public : virtual wxBitmap GetBitmap() const = 0; virtual void SetBitmap( const wxBitmap& bitmap ) = 0; virtual void SetBitmapPosition( wxDirection dir ) = 0; - virtual void SetupTabs( const wxNotebook ¬ebook ) {}; + virtual void SetupTabs( const wxNotebook& WXUNUSED(notebook) ) {} virtual int TabHitTest( const wxPoint & WXUNUSED(pt), long *flags ) {*flags=1; return -1;}; virtual void GetBestRect( wxRect *r ) const = 0; virtual bool IsEnabled() const = 0;