X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FOutputParams.h;h=16fe7c4a765a03d75c64401aceda0c90d5f179a3;hb=7c3fd636469b0a7f50f3515d100d9e957cda16b9;hp=f01c5b96b4f2d57e9c023da49ba3f3a3cc9565c5;hpb=f7be88ce4c2bbc10c4691e614a54fca427a2e8fb;p=lyx.git diff --git a/src/OutputParams.h b/src/OutputParams.h index f01c5b96b4..16fe7c4a76 100644 --- a/src/OutputParams.h +++ b/src/OutputParams.h @@ -163,11 +163,11 @@ public: /** Customized bibtex_command */ - mutable std::string bibtex_command; + std::string bibtex_command; /** Customized index_command */ - mutable std::string index_command; + std::string index_command; /** Line length to use with plaintext or LaTeX export. */ @@ -254,6 +254,9 @@ public: /// Should we output verbatim or escape LaTeX's special chars? bool pass_thru; + /// Should we output verbatim specific chars? + docstring pass_thru_chars; + /// Should we output captions? bool html_disable_captions; @@ -272,6 +275,9 @@ public: /// Are we generating this material for use by advanced search? bool for_search; + /// Are we generating this material for instant preview? + bool for_preview; + /// Include all children notwithstanding the use of \includeonly bool includeall;