From: Vadim Zeitlin Date: Mon, 2 Jul 2012 12:46:11 +0000 (+0000) Subject: No changes, just suppress an unused parameter warning in wxOSX build. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/87762892be6f3ff299f886457c637a22b1c09424 No changes, just suppress an unused parameter warning in wxOSX build. This one was especially annoying as it occurred in a header included by a couple of dozens of files. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71938 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/osx/core/private.h b/include/wx/osx/core/private.h index fb28fd6e72..9961aaab05 100644 --- a/include/wx/osx/core/private.h +++ b/include/wx/osx/core/private.h @@ -302,7 +302,7 @@ public : virtual void CaptureMouse() = 0; virtual void ReleaseMouse() = 0; - virtual void SetDropTarget( wxDropTarget *dropTarget ) {} + virtual void SetDropTarget( wxDropTarget * WXUNUSED(dropTarget) ) {} virtual wxInt32 GetValue() const = 0; virtual void SetValue( wxInt32 v ) = 0;