]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnknown.cpp
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / InsetMathUnknown.cpp
index 29dae2b971ee27f588f4be2a6a18b713448923e5..e79a17c015b289acdb679f7ead9989a1e133d984 100644 (file)
 #include <config.h>
 
 #include "InsetMathUnknown.h"
+
 #include "MathSupport.h"
 #include "MathAtom.h"
 #include "MathStream.h"
-#include "MathStream.h"
+
+#include "MetricsInfo.h"
 
 #include "frontends/Painter.h"
 
 
 namespace lyx {
 
-InsetMathUnknown::InsetMathUnknown(docstring const & nm,
+InsetMathUnknown::InsetMathUnknown(docstring const & name,
        docstring const & selection, bool final, bool black)
-       : name_(nm), final_(final), black_(black), selection_(selection)
+       : name_(name), final_(final), black_(black), kerning_(0),
+         selection_(selection)
 {}