mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
initialize member variables: width_, scriptable_
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14401 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f01a63d10b
commit
6dd6b5b22a
@ -26,17 +26,17 @@ using std::auto_ptr;
|
||||
|
||||
|
||||
MathSymbolInset::MathSymbolInset(latexkeys const * l)
|
||||
: sym_(l), h_(0)
|
||||
: sym_(l), h_(0), width_(0), scriptable_(false)
|
||||
{}
|
||||
|
||||
|
||||
MathSymbolInset::MathSymbolInset(char const * name)
|
||||
: sym_(in_word_set(name)), h_(0)
|
||||
: sym_(in_word_set(name)), h_(0), width_(0), scriptable_(false)
|
||||
{}
|
||||
|
||||
|
||||
MathSymbolInset::MathSymbolInset(string const & name)
|
||||
: sym_(in_word_set(name.c_str())), h_(0)
|
||||
: sym_(in_word_set(name.c_str())), h_(0), width_(0), scriptable_(false)
|
||||
{}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user