Removed unused private variable

Spotted by clang++ 6.
This commit is contained in:
Jean-Marc Lasgouttes 2018-05-14 23:03:50 +02:00
parent 933502f991
commit c4075367fa
2 changed files with 2 additions and 4 deletions

View File

@ -29,14 +29,14 @@ using namespace lyx::support;
namespace lyx {
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)))
{}
InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle,
docstring const & color)
: InsetMathNest(buf, 1), w_(0), oldstyle_(oldstyle), color_(color)
: InsetMathNest(buf, 1), oldstyle_(oldstyle), color_(color)
{}

View File

@ -49,8 +49,6 @@ public:
InsetCode lyxCode() const { return MATH_COLOR_CODE; }
private:
virtual Inset * clone() const;
/// width of '[' in current font
mutable int w_;
///
bool oldstyle_;
/// Our color. Only valid LaTeX colors are allowed.