From 964688d8ec1cb1a7bfbb8fe906997679d3a005d4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 18 Sep 1999 17:17:04 +0000 Subject: [PATCH] unused parameter warnings suppressed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3714 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/htmlcell.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/html/htmlcell.cpp b/src/html/htmlcell.cpp index 1019e1367f..8ad6774f34 100644 --- a/src/html/htmlcell.cpp +++ b/src/html/htmlcell.cpp @@ -32,7 +32,10 @@ //----------------------------------------------------------------------------- -void wxHtmlCell::OnMouseClick(wxWindow *parent, int x, int y, bool left, bool middle, bool right) +void wxHtmlCell::OnMouseClick(wxWindow *parent, int x, int y, + bool WXUNUSED(left), + bool WXUNUSED(middle), + bool WXUNUSED(right)) { wxString lnk = GetLink(x, y); if (lnk != wxEmptyString) -- 2.45.2