]> git.lyx.org Git - features.git/commitdiff
Hopefully fixes #6082
authorPavel Sanda <sanda@lyx.org>
Tue, 14 Jul 2009 18:06:19 +0000 (18:06 +0000)
committerPavel Sanda <sanda@lyx.org>
Tue, 14 Jul 2009 18:06:19 +0000 (18:06 +0000)
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

src/mathed/MathStream.cpp

index 5573468aa2fca827c533240e30a99063b0557c17..b8a8019d3665dbe0ad51f802e68442f3f7849246 100644 (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)
 {}