]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.cpp
add short git hash to name of devel disk images to get different names for devel...
[lyx.git] / src / OutputParams.cpp
index 0ef0c2c6dd9433f42576497e7e53218421ffbd3d..cf81253ea724a8353ea207b73f9ff3608b81f280 100644 (file)
@@ -20,7 +20,7 @@ namespace lyx {
 
 OutputParams::OutputParams(Encoding const * enc)
        : flavor(LATEX), math_flavor(NotApplicable), nice(false), is_child(false),
-         moving_arg(false), inulemcmd(false), local_font(0), master_language(0),
+         moving_arg(false), intitle(false), inulemcmd(0), local_font(0), master_language(0),
          encoding(enc), free_spacing(false), use_babel(false), use_polyglossia(false),
          use_indices(false), use_japanese(false), linelen(0), depth(0),
          exportdata(new ExportData),
@@ -28,12 +28,13 @@ OutputParams::OutputParams(Encoding const * enc)
          inIndexEntry(false), inIPA(false), inDeletedInset(0),
          changeOfDeletedInset(Change::UNCHANGED),
          par_begin(0), par_end(0), lastid(-1), lastpos(-1), isLastPar(false),
-         dryrun(false), pass_thru(false), 
+         dryrun(false), silent(false), pass_thru(false),
          html_disable_captions(false), html_in_par(false),
-         html_make_pars(true), for_toc(false), for_tooltip(false), includeall(false)
+         html_make_pars(true), for_toc(false), for_tooltip(false),
+    for_search(false), includeall(false)
 {
        // Note: in PreviewLoader::Impl::dumpPreamble
-       // OutputParams runparams(0); 
+       // OutputParams runparams(0);
        if (enc && enc->package() == Encoding::japanese)
                use_japanese = true;
 }
@@ -46,7 +47,7 @@ OutputParams::~OutputParams()
 bool OutputParams::isLaTeX() const
 {
        return flavor == LATEX || flavor == LUATEX || flavor == DVILUATEX
-               || flavor == PDFLATEX || flavor == XETEX; 
+               || flavor == PDFLATEX || flavor == XETEX;
 }