]> git.lyx.org Git - features.git/commitdiff
Ops
authorEnrico Forestieri <forenr@lyx.org>
Mon, 16 Jun 2008 20:39:40 +0000 (20:39 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Mon, 16 Jun 2008 20:39:40 +0000 (20:39 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25285 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathNest.cpp

index 2dd5fd3a7add93be8e06c4adde8e53437ac308a7..372c30786a9fa182ddbaf76449f063305be58048 100644 (file)
@@ -339,7 +339,7 @@ void InsetMathNest::write(WriteStream & os) const
        bool textmode = os.textMode();
        os.textMode(currentMode() == TEXT_MODE);
        docstring const latex_name = name().c_str();
-       os << '\\' << latex_name.c_str();
+       os << '\\' << latex_name;
        for (size_t i = 0; i < nargs(); ++i)
                os << '{' << cell(i) << '}';
        if (nargs() == 0)