From 60da156ffda0df3c40e466630aeb6d1008bdd2ab Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 18 Nov 2010 22:01:54 +0000 Subject: [PATCH] Squash some warnings. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36386 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/MathStream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mathed/MathStream.cpp b/src/mathed/MathStream.cpp index c74123c448..f4ff9349b0 100644 --- a/src/mathed/MathStream.cpp +++ b/src/mathed/MathStream.cpp @@ -125,7 +125,7 @@ WriteStream::WriteStream(odocstream & os, bool fragile, bool latex, OutputType o Encoding const * encoding) : os_(os), fragile_(fragile), firstitem_(false), latex_(latex), output_(output), pendingspace_(false), pendingbrace_(false), - canbreakline_(true), textmode_(false), locked_(0), ascii_(0), + textmode_(false), locked_(0), ascii_(0), canbreakline_(true), line_(0), encoding_(encoding) {} @@ -133,7 +133,7 @@ WriteStream::WriteStream(odocstream & os, bool fragile, bool latex, OutputType o WriteStream::WriteStream(odocstream & os) : os_(os), fragile_(false), firstitem_(false), latex_(false), output_(wsDefault), pendingspace_(false), pendingbrace_(false), - canbreakline_(true), textmode_(false), locked_(0), ascii_(0), + textmode_(false), locked_(0), ascii_(0), canbreakline_(true), line_(0), encoding_(0) {}