mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
4f1d5e72ef
* src/insets/insetcaption.C (InsetCaption::latex): Copy back encoding to runparams_in * src/insets/insetfoot.C (InsetFoot::latex): ditto * src/insets/insetnote.C (InsetNote::latex): ditto * src/exporter.C (Exporter::Export): Create runparams with document encoding * src/converter.C (bool Converters::convert): ditto * src/buffer.C (Buffer::writeLaTeXSource): Copy back encoding to runparams_in (Buffer::runChktex): Create runparams with document encoding (Buffer::changeRefsIfUnique): ditto * src/outputparams.[Ch] (encoding): New member * src/lyxfont.C (LyXFont::latexWriteStartChanges): Don't switch the encoding anymore. This is now done in Paragraph::simpleTeXOnePar. (LyXFont::latexWriteEndChanges): Ditto * src/output_latex.C (TeXOnePar): Ditto * src/paragraph.C (Paragraph::simpleTeXOnePar): Switch the encoding between font changes if needed. * All other files: Adjust to the changes above git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17470 a592a061-630c-0410-9148-cb99ea01b6c8
36 lines
675 B
C
36 lines
675 B
C
/**
|
|
* \file outputparams.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "outputparams.h"
|
|
#include "exporter.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
OutputParams::OutputParams(Encoding const * enc)
|
|
: flavor(LATEX), nice(false), moving_arg(false),
|
|
local_font(0), encoding(enc), free_spacing(false), use_babel(false),
|
|
linelen(0), depth(0),
|
|
exportdata(new ExportData),
|
|
inComment(false),
|
|
par_begin(0), par_end(0),
|
|
dryrun(false)
|
|
{}
|
|
|
|
|
|
OutputParams::~OutputParams()
|
|
{}
|
|
|
|
|
|
} // namespace lyx
|