]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Fix layout bug. Pasting text into a cell tried to set Standard layout, because
[lyx.git] / src / OutputParams.h
index c45c1092299c3b605290d84f014bc57159e54680..066366b5c3566422da653a5a53f1443a6ea71230 100644 (file)
@@ -73,7 +73,7 @@ public:
        /** Current stream encoding. Only used for LaTeX.
            This must be set to the document encoding (via the constructor)
            before output starts. Afterwards it must be kept up to date for
-           each single character (\see Paragraph::simpleTeXOnePar).
+           each single character (\sa Paragraph::latex).
            This does also mean that you need to set it back if you use a
            copy (e.g. in insets): \code
            int InsetFoo::latex(..., OutputParams const & runparams_in) const
@@ -146,6 +146,8 @@ public:
         *  This mode will be used to preview the source code
         */
        bool dryrun;
+       /// Should we output verbatim or escape LaTeX's special chars?
+       bool verbatim;
 };