mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Removed unused private variable
Spotted by clang++ 6.
(cherry picked from commit c4075367fa
)
This commit is contained in:
parent
7381bbdc0d
commit
011d925da0
@ -29,14 +29,14 @@ using namespace lyx::support;
|
|||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
|
||||||
InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color)
|
InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color)
|
||||||
: InsetMathNest(buf, 1), w_(0), oldstyle_(oldstyle),
|
: InsetMathNest(buf, 1), oldstyle_(oldstyle),
|
||||||
color_(from_utf8(lcolor.getLaTeXName(color)))
|
color_(from_utf8(lcolor.getLaTeXName(color)))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle,
|
InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle,
|
||||||
docstring const & color)
|
docstring const & color)
|
||||||
: InsetMathNest(buf, 1), w_(0), oldstyle_(oldstyle), color_(color)
|
: InsetMathNest(buf, 1), oldstyle_(oldstyle), color_(color)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -49,8 +49,6 @@ public:
|
|||||||
InsetCode lyxCode() const { return MATH_COLOR_CODE; }
|
InsetCode lyxCode() const { return MATH_COLOR_CODE; }
|
||||||
private:
|
private:
|
||||||
virtual Inset * clone() const;
|
virtual Inset * clone() const;
|
||||||
/// width of '[' in current font
|
|
||||||
mutable int w_;
|
|
||||||
///
|
///
|
||||||
bool oldstyle_;
|
bool oldstyle_;
|
||||||
/// Our color. Only valid LaTeX colors are allowed.
|
/// Our color. Only valid LaTeX colors are allowed.
|
||||||
|
Loading…
Reference in New Issue
Block a user