mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
gcc spits out million warnings
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35807 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4e5d3469f6
commit
0590c77d47
@ -336,7 +336,7 @@ public:
|
||||
// true for InsetTabular & InsetText
|
||||
virtual bool isActive() const { return nargs() > 0; }
|
||||
/// can we click at the specified position ?
|
||||
virtual bool clickable(int x, int y) const { return false; }
|
||||
virtual bool clickable(int, int) const { return false; }
|
||||
|
||||
/// does this contain text that can be change track marked in DVI?
|
||||
virtual bool canTrackChanges() const { return false; }
|
||||
|
@ -99,7 +99,7 @@ private:
|
||||
///
|
||||
InsetCode lyxCode() const { return NO_CODE; }
|
||||
///
|
||||
bool clickable(int x, int y) const { return hasSettings(); }
|
||||
bool clickable(int, int) const { return hasSettings(); }
|
||||
///
|
||||
RenderButton & button() const { return button_; }
|
||||
///
|
||||
|
@ -116,7 +116,7 @@ public:
|
||||
///
|
||||
bool setMouseHover(BufferView const * bv, bool mouse_hover);
|
||||
///
|
||||
bool clickable(int x, int y) const { return true; }
|
||||
bool clickable(int, int) const { return true; }
|
||||
private:
|
||||
///
|
||||
InsetExternal(InsetExternal const &);
|
||||
|
@ -52,7 +52,7 @@ public:
|
||||
|
||||
InsetGraphicsParams getParams() const { return params_;}
|
||||
///
|
||||
bool clickable(int x, int y) const { return true; }
|
||||
bool clickable(int, int) const { return true; }
|
||||
|
||||
private:
|
||||
///
|
||||
|
@ -38,7 +38,7 @@ public:
|
||||
///
|
||||
static std::string params2string(VSpace const &);
|
||||
///
|
||||
bool clickable(int x, int y) const { return true; }
|
||||
bool clickable(int, int) const { return true; }
|
||||
private:
|
||||
///
|
||||
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
||||
|
Loading…
Reference in New Issue
Block a user