]> git.lyx.org Git - lyx.git/commitdiff
fix a compiler warning regarding unused variable
authorBo Peng <bpeng@lyx.org>
Tue, 5 Dec 2006 02:18:29 +0000 (02:18 +0000)
committerBo Peng <bpeng@lyx.org>
Tue, 5 Dec 2006 02:18:29 +0000 (02:18 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16179 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/insetbase.h

index f414af2d26eeb0fb7cbfd005e6d4a42e50d68381..8e1af0aee74e15bd810d3ba2795c16ffb578dbca 100644 (file)
@@ -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 {}