Removed unused private variable

Spotted by clang++ 6.

(cherry picked from commit c4075367fa)
This commit is contained in:
Jean-Marc Lasgouttes 2018-05-14 23:03:50 +02:00
parent 7381bbdc0d
commit 011d925da0
2 changed files with 2 additions and 4 deletions

View File

@ -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)
{} {}

View File

@ -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.