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