From: Enrico Forestieri Date: Sat, 1 May 2010 11:38:05 +0000 (+0000) Subject: Avoid compiler warning about unused parameter. X-Git-Tag: 2.0.0~3307 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=60466235fe8981fbe359bcc129a919bd26efd3b1;p=features.git Avoid compiler warning about unused parameter. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34352 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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 {}