]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSymbol.cpp
tex2lyx: support for \item with opt arg in itemize environment
[lyx.git] / src / mathed / InsetMathSymbol.cpp
index 1999846729868998005b1f628e392481e63257d1..79924fec424bca92a82130636efdcf158c861658 100644 (file)
 namespace lyx {
 
 InsetMathSymbol::InsetMathSymbol(latexkeys const * l)
-       : sym_(l), h_(0), scriptable_(false)
+       : sym_(l), h_(0), kerning_(0), scriptable_(false)
 {}
 
 
 InsetMathSymbol::InsetMathSymbol(char const * name)
-       : sym_(in_word_set(from_ascii(name))), h_(0), scriptable_(false)
+       : sym_(in_word_set(from_ascii(name))), h_(0),
+         kerning_(0), scriptable_(false)
 {}
 
 
 InsetMathSymbol::InsetMathSymbol(docstring const & name)
-       : sym_(in_word_set(name)), h_(0), scriptable_(false)
+       : sym_(in_word_set(name)), h_(0), kerning_(0), scriptable_(false)
 {}