]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnderset.cpp
Move <algorithm> from DocIterator.h
[lyx.git] / src / mathed / InsetMathUnderset.cpp
index 832631dfa3a8cdeb69f3c940428b80dd93398397..2c38e3065f2a2f5d054f0fbfacc870d5c796ffe8 100644 (file)
@@ -94,7 +94,9 @@ void InsetMathUnderset::normalize(NormalStream & os) const
 
 void InsetMathUnderset::mathmlize(MathStream & ms) const
 {
-       ms << "<munder accent='false'>" << cell(0) << cell(1) << "</munder>";
+       ms << "<" << from_ascii(ms.namespacedTag("munder")) << " accent='false'>"
+          << cell(0) << cell(1)
+          << "</" << from_ascii(ms.namespacedTag("munder")) << ">";
 }