Hopefully fixes #6082

http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg153098.html

Juergen?


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30581 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-07-14 18:06:19 +00:00
parent c4fafe11c9
commit 34fc56c9bc

View File

@ -111,14 +111,14 @@ WriteStream::WriteStream(odocstream & os, bool fragile, bool latex, bool dryrun,
Encoding const * encoding)
: os_(os), fragile_(fragile), firstitem_(false), latex_(latex),
dryrun_(dryrun), pendingspace_(false), pendingbrace_(false),
textmode_(false), line_(0), encoding_(encoding)
textmode_(false), locked_(0), line_(0), encoding_(encoding)
{}
WriteStream::WriteStream(odocstream & os)
: os_(os), fragile_(false), firstitem_(false), latex_(false),
dryrun_(false), pendingspace_(false), pendingbrace_(false),
textmode_(false), line_(0), encoding_(0)
textmode_(false), locked_(0), line_(0), encoding_(0)
{}