mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
Removed unused private variable
Spotted by clang++ 6.
This commit is contained in:
parent
933502f991
commit
c4075367fa
@ -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)
|
||||
{}
|
||||
|
||||
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user