]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetwrap.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetwrap.C
index bc06311c4d8af78ecd47e65d4b6d90ebf7f86636..97cd8d3b05a1c9da97df24d453318aab11e5c9ff 100644 (file)
@@ -192,8 +192,8 @@ string const InsetWrap::editMessage() const
 }
 
 
-int InsetWrap::latex(Buffer const * buf, ostream & os, LatexRunParams const & runparams,
-                    bool fragile, bool fp) const
+int InsetWrap::latex(Buffer const * buf, ostream & os,
+                    LatexRunParams const & runparams) const
 {
        os << "\\begin{floating" << params_.type << '}';
        if (!params_.placement.empty()) {
@@ -201,7 +201,7 @@ int InsetWrap::latex(Buffer const * buf, ostream & os, LatexRunParams const & ru
        }
        os  << '{' << params_.width.asLatexString() << "}%\n";
 
-       int const i = inset.latex(buf, os, runparams, fragile, fp);
+       int const i = inset.latex(buf, os, runparams);
 
        os << "\\end{floating" << params_.type << "}%\n";
        return i + 2;