try new log_accum

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1180 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2000-10-31 23:28:49 +00:00
parent c5264144bd
commit bd420046bb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-11-01 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/support/filetools.C (GetFileContents): close to dummy change
2000-10-31 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/trans.C (AddDeadkey): workaround stupid compilers.

View File

@ -739,7 +739,7 @@ string const GetFileContents(string const & fname)
if (ifs && ofs) {
ofs << ifs.rdbuf();
ifs.close();
return ofs.str().c_str();
return ofs.str();
}
}
lyxerr << "LyX was not able to read file '" << fname << "'" << endl;