]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExFunc.cpp
Remove hardcoded values
[lyx.git] / src / mathed / InsetMathExFunc.cpp
index 3398e9049addec135e74611d96ed394d5c492e40..e4e1f10c2e2b8daa099bcb490185c58828f1a798 100644 (file)
@@ -44,7 +44,7 @@ Inset * InsetMathExFunc::clone() const
 
 void InsetMathExFunc::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       mathed_string_dim(mi.base.font, name_, dim);
+       metricsStrRedBlack(mi, dim, name_);
 }
 
 
@@ -124,9 +124,14 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const
 
 void InsetMathExFunc::mathmlize(MathStream & os) const
 {
-       ++os.tab(); os.cr(); os.os() << '<' << name_ << '>';
+       os << "<mi>" << name_ << "</mi><mo>&af;</mo>";
        os << cell(0);
-       os.cr(); --os.tab(); os.os() << "</" << name_ << '>';
+}
+
+
+void InsetMathExFunc::htmlize(HtmlStream & os) const
+{
+       os << name_ << cell(0);
 }