From: Bo Peng Date: Tue, 5 Dec 2006 02:18:29 +0000 (+0000) Subject: fix a compiler warning regarding unused variable X-Git-Tag: 1.6.10~11639 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b02d655347adec5e866e5014f4656b47e09cd269;p=lyx.git fix a compiler warning regarding unused variable git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16179 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/insetbase.h b/src/insets/insetbase.h index f414af2d26..8e1af0aee7 100644 --- a/src/insets/insetbase.h +++ b/src/insets/insetbase.h @@ -182,7 +182,7 @@ public: virtual bool notifyCursorLeaves(LCursor &) { return false; } /// is called when the mouse enter or leave this inset /// return true if this inset needs repaint - virtual bool setMouseHover(bool mouse_hover) { return false; } + virtual bool setMouseHover(bool) { return false; } /// request "external features" virtual void validate(LaTeXFeatures &) const {}