]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloat.C
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetfloat.C
index d04f2e04283f1f8756f1d500662a7473d809a70c..e4b7c9944f82b8fa77d55836bd8b13af1567e321 100644 (file)
@@ -145,8 +145,8 @@ InsetFloat::InsetFloat(BufferParams const & bp, string const & type)
 }
 
 
-InsetFloat::InsetFloat(InsetFloat const & in, bool same_id)
-       : InsetCollapsable(in, same_id), params_(in.params_)
+InsetFloat::InsetFloat(InsetFloat const & in)
+       : InsetCollapsable(in), params_(in.params_)
 {}
 
 
@@ -259,9 +259,9 @@ void InsetFloat::validate(LaTeXFeatures & features) const
 }
 
 
-Inset * InsetFloat::clone(Buffer const &, bool same_id) const
+Inset * InsetFloat::clone() const
 {
-       return new InsetFloat(*const_cast<InsetFloat *>(this), same_id);
+       return new InsetFloat(*this);
 }