]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSqrt.cpp
Simplify Changers interface
[lyx.git] / src / mathed / InsetMathSqrt.cpp
index a8ef7e386f1822d7fea4ea214faf136ca9f41d71..3e49abccb2c6bb07087e87768b6f6d9a6ba85292 100644 (file)
 
 #include "InsetMathSqrt.h"
 
-#include "LaTeXFeatures.h"
 #include "MathData.h"
 #include "MathStream.h"
+
+#include "LaTeXFeatures.h"
+#include "MetricsInfo.h"
 #include "TextPainter.h"
+
 #include "frontends/Painter.h"
 
 
@@ -38,7 +41,7 @@ void InsetMathSqrt::metrics(MetricsInfo & mi, Dimension & dim) const
        dim.asc += 4;
        dim.des += 2;
        dim.wid += 12;
-       metricsMarkers(dim);
+       metricsMarkers(mi, dim);
 }
 
 
@@ -127,9 +130,7 @@ void InsetMathSqrt::htmlize(HtmlStream & os) const
 void InsetMathSqrt::validate(LaTeXFeatures & features) const
 {
        if (features.runparams().math_flavor == OutputParams::MathAsHTML)
-               features.addPreambleSnippet("<style type=\"text/css\">\n"
-                       "span.sqrtof{border-top: thin solid black;}\n"
-                       "</style>");
+               features.addCSSSnippet("span.sqrtof{border-top: thin solid black;}");
        InsetMathNest::validate(features);
 }