From: Vincent van Ravesteijn Date: Sun, 22 Nov 2009 00:46:23 +0000 (+0000) Subject: Initialize nextraw_. The first character of the outputted html file was represented... X-Git-Tag: 2.0.0~5050 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ab19ef36ccc4e9449ca5148fdc421893b460d339;p=features.git Initialize nextraw_. The first character of the outputted html file was represented as an integer. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32144 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/output_xhtml.cpp b/src/output_xhtml.cpp index f4a0612481..376de29c25 100644 --- a/src/output_xhtml.cpp +++ b/src/output_xhtml.cpp @@ -123,7 +123,7 @@ docstring CompTag::asTag() const //////////////////////////////////////////////////////////////// XHTMLStream::XHTMLStream(odocstream & os) - :os_(os) + : os_(os), nextraw_(false) {}