]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettext.C
Pass struct LatexRunParams around a bit...
[lyx.git] / src / insets / insettext.C
index 250e0f9e5e142b9baa7545a18af297f6ba98e73a..05701273cf91184a87d3ff62bc18efff0a2b54ee 100644 (file)
@@ -1447,10 +1447,11 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & cmd)
 }
 
 
-int InsetText::latex(Buffer const * buf, ostream & os, bool fragile, bool) const
+int InsetText::latex(Buffer const * buf, ostream & os, LatexRunParams const & runparams,
+                    bool fragile, bool) const
 {
        TexRow texrow;
-       latexParagraphs(buf, paragraphs, os, texrow, fragile);
+       latexParagraphs(buf, paragraphs, os, texrow, runparams, fragile);
        return texrow.rows();
 }