]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathSupport.cpp
... and RELEASE-NOTES
[lyx.git] / src / mathed / MathSupport.cpp
index e18a351c82543e46d4a1cfa28226f5607d4f85fa..5c3e84f249f816d7d0bcb876aa9fbf7cb5272d23 100644 (file)
@@ -919,8 +919,7 @@ bool isAlphaSymbol(MathAtom const & at)
 docstring asString(MathData const & ar)
 {
        odocstringstream os;
-       TexRow texrow(false);
-       otexrowstream ots(os,texrow);
+       otexrowstream ots(os);
        WriteStream ws(ots);
        ws << ar;
        return os.str();
@@ -938,8 +937,7 @@ void asArray(docstring const & str, MathData & ar, Parse::flags pf)
 docstring asString(InsetMath const & inset)
 {
        odocstringstream os;
-       TexRow texrow(false);
-       otexrowstream ots(os,texrow);
+       otexrowstream ots(os);
        WriteStream ws(ots);
        inset.write(ws);
        return os.str();
@@ -949,8 +947,7 @@ docstring asString(InsetMath const & inset)
 docstring asString(MathAtom const & at)
 {
        odocstringstream os;
-       TexRow texrow(false);
-       otexrowstream ots(os,texrow);
+       otexrowstream ots(os);
        WriteStream ws(ots);
        at->write(ws);
        return os.str();