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:
Abdelrazak Younes 2006-07-09 16:35:20 +00:00
parent f01a63d10b
commit 6dd6b5b22a

View File

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