]> git.lyx.org Git - features.git/commitdiff
add that stupid string(os.c_str()) hack...
authorAndré Pönitz <poenitz@gmx.net>
Thu, 29 Aug 2002 13:56:32 +0000 (13:56 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Thu, 29 Aug 2002 13:56:32 +0000 (13:56 +0000)
Do we really need --with-included-strings anymore?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5174 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_inset.C

index 40193c8f4a1b7d36d9fd4d196964fc56c61f96f7..1eb8465e99761a7a579b8eb3c20920127e5e5f02 100644 (file)
@@ -291,7 +291,7 @@ string asString(MathArray const & ar)
        std::ostringstream os;
        WriteStream ws(os);
        ws << ar;
-       return os.str();
+       return os.str().c_str();
 }