mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Avoid compiler warning about unused parameter.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34352 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7d4ca5033e
commit
60466235fe
@ -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 {}
|
||||
|
Loading…
Reference in New Issue
Block a user