mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix uninitialized member in LaTexFont constructor
Fixes coverity issue 23382
This commit is contained in:
parent
1e94fc4fea
commit
4e2f16e84e
@ -26,7 +26,7 @@ class Lexer;
|
||||
class LaTeXFont {
|
||||
public:
|
||||
/// TeX font
|
||||
LaTeXFont() : switchdefault_(false) {}
|
||||
LaTeXFont() : osfdefault_(false), switchdefault_(false) {}
|
||||
/// The font name
|
||||
docstring const & name() { return name_; }
|
||||
/// The name to appear in the document dialog
|
||||
|
Loading…
Reference in New Issue
Block a user