mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Fix missing initialization
Spotted by Coverity.
This commit is contained in:
parent
e6a7da3b22
commit
f5340fd6d9
@ -30,7 +30,8 @@ namespace lyx {
|
||||
|
||||
InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color)
|
||||
: InsetMathNest(buf, 1), oldstyle_(oldstyle),
|
||||
color_(from_utf8(lcolor.getLaTeXName(color)))
|
||||
color_(from_utf8(lcolor.getLaTeXName(color))),
|
||||
current_mode_(UNDECIDED_MODE)
|
||||
{}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user