From 60466235fe8981fbe359bcc129a919bd26efd3b1 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Sat, 1 May 2010 11:38:05 +0000 Subject: [PATCH] Avoid compiler warning about unused parameter. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34352 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/Inset.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insets/Inset.h b/src/insets/Inset.h index ab12fa8ba7..e1f8475674 100644 --- a/src/insets/Inset.h +++ b/src/insets/Inset.h @@ -286,13 +286,13 @@ public: { return false; } /// is called when the mouse enters or leaves this inset /// return true if this inset needs a repaint - virtual bool setMouseHover(BufferView const * bv, bool) { return false; } + virtual bool setMouseHover(BufferView const *, bool) { return false; } /// return true if this inset is hovered (under mouse) /// This is by now only used by mathed to draw corners /// (Inset::drawMarkers() and Inset::drawMarkers2()). /// Other insets do not have to redefine this function to /// return the correct status of mouseHovered. - virtual bool mouseHovered(BufferView const * bv) const { return false; } + virtual bool mouseHovered(BufferView const *) const { return false; } /// request "external features" virtual void validate(LaTeXFeatures &) const {} -- 2.39.2