X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathStream.cpp;h=78838ccd0ab25bb151e9441c4dbb42b87efb9faf;hb=52dd5dc84f3a9f836903aeaca49f27e45cda6dce;hp=e91db433f96c9eb8f4d95a306f76642274ec7553;hpb=43d284e15ad6193da2508a57b5260cb85ff4cdb9;p=features.git diff --git a/src/mathed/MathStream.cpp b/src/mathed/MathStream.cpp index e91db433f9..78838ccd0a 100644 --- a/src/mathed/MathStream.cpp +++ b/src/mathed/MathStream.cpp @@ -124,20 +124,10 @@ WriteStream & operator<<(WriteStream & ws, docstring const & s) WriteStream::WriteStream(otexrowstream & os, bool fragile, bool latex, OutputType output, Encoding const * encoding) - : WriteStream(os) -{ - fragile_ = fragile; - latex_ = latex; - output_ = output; - encoding_ = encoding; -} - - -WriteStream::WriteStream(otexrowstream & os) - : os_(os), fragile_(false), firstitem_(false), latex_(false), - output_(wsDefault), pendingspace_(false), pendingbrace_(false), + : os_(os), fragile_(fragile), firstitem_(false), latex_(latex), + output_(output), pendingspace_(false), pendingbrace_(false), textmode_(false), locked_(0), ascii_(0), canbreakline_(true), - line_(0), encoding_(0), row_entry_(TexRow::row_none) + line_(0), encoding_(encoding), row_entry_(TexRow::row_none) {}