mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
Remove RenderButton::button_box_, which is unused.
This commit is contained in:
parent
8cf6b34738
commit
4062cbd278
@ -1217,8 +1217,6 @@ void InsetInclude::metrics(MetricsInfo & mi, Dimension & dim) const
|
||||
button_.metrics(mi, dim);
|
||||
}
|
||||
|
||||
Box b(0, dim.wid, -dim.asc, dim.des);
|
||||
button_.setBox(b);
|
||||
}
|
||||
|
||||
|
||||
|
@ -13,7 +13,6 @@
|
||||
#define RENDERBUTTON_H
|
||||
|
||||
#include "RenderBase.h"
|
||||
#include "Box.h"
|
||||
#include "support/docstring.h"
|
||||
|
||||
|
||||
@ -36,11 +35,6 @@ public:
|
||||
void update(docstring const &, bool editable,
|
||||
bool inherit, bool broken = false);
|
||||
|
||||
/// The "sensitive area" box, i.e., the button area
|
||||
Box box() const { return button_box_; }
|
||||
///
|
||||
void setBox(Box b) { button_box_ = b; }
|
||||
|
||||
/// equivalent to dynamic_cast
|
||||
RenderButton * asButton() override { return this; }
|
||||
|
||||
@ -50,7 +44,6 @@ private:
|
||||
bool editable_;
|
||||
bool broken_;
|
||||
bool inherit_font_;
|
||||
Box button_box_;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user