]> git.lyx.org Git - features.git/commitdiff
Avoid compiler warning about unused parameter.
authorEnrico Forestieri <forenr@lyx.org>
Sat, 1 May 2010 11:38:05 +0000 (11:38 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Sat, 1 May 2010 11:38:05 +0000 (11:38 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34352 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/Inset.h

index ab12fa8ba749067f48c3c69da20c0154fd756422..e1f84756740357b98eb4c49d8414f0003e91d754 100644 (file)
@@ -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 {}