From 9a7ba0c534ecab1178c30cda70f6830e1bb1a9a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Fri, 11 Jan 2002 13:38:41 +0000 Subject: [PATCH] Add missing initialization (I dont think that was the problem, Angus) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3334 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_mathmlstream.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mathed/math_mathmlstream.C b/src/mathed/math_mathmlstream.C index bf12913e0b..1f3319ba1a 100644 --- a/src/mathed/math_mathmlstream.C +++ b/src/mathed/math_mathmlstream.C @@ -186,12 +186,12 @@ NormalStream & operator<<(NormalStream & ns, char c) WriteStream::WriteStream(std::ostream & os, bool fragile) - : os_(os), fragile_(fragile), line_(0) + : os_(os), fragile_(fragile), firstitem_(false), line_(0) {} WriteStream::WriteStream(std::ostream & os) - : os_(os), fragile_(false), line_(0) + : os_(os), fragile_(false), firstitem_(false), line_(0) {}