mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
* src/output_plaintext.cpp:
- fix plaintext output. Abdel, you still should have a look at this. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22330 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
eb112d0711
commit
31496b4a16
@ -34,7 +34,8 @@ namespace lyx {
|
||||
void writePlaintextFile(Buffer const & buf, FileName const & fname,
|
||||
OutputParams const & runparams)
|
||||
{
|
||||
odocfstream ofs("UTF-8");
|
||||
odocfstream ofs;
|
||||
ofs << setEncoding("UTF-8");
|
||||
if (!openFileWrite(ofs, fname))
|
||||
return;
|
||||
writePlaintextFile(buf, ofs, runparams);
|
||||
|
Loading…
Reference in New Issue
Block a user