]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloat.h
get rid of same_id from function signatures
[lyx.git] / src / insets / insetfloat.h
index 4e74486d40025a547e31bea3d7766155df4dd687..8b02904acdc07f20a3259d283191601fa99d1114 100644 (file)
@@ -41,11 +41,13 @@ public:
        ///
        InsetFloat(BufferParams const &, string const &);
        ///
-       InsetFloat(InsetFloat const &, bool same_id = false);
+       InsetFloat(InsetFloat const &);
+       ///
+       //InsetFloat(InsetFloat const &, bool same_id);
        ///
        ~InsetFloat();
        ///
-       virtual dispatch_result localDispatch(FuncRequest const & cmd); 
+       virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
        void write(Buffer const * buf, std::ostream & os) const;
        ///
@@ -53,7 +55,9 @@ public:
        ///
        void validate(LaTeXFeatures & features) const;
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
+       Inset * clone(Buffer const &) const;
+       ///
+       //Inset * clone(Buffer const &, bool same_id) const;
        ///
        Inset::Code lyxCode() const { return Inset::FLOAT_CODE; }
        ///
@@ -77,7 +81,7 @@ public:
        bool  showInsetDialog(BufferView *) const;
        ///
        InsetFloatParams const & params() const { return params_; }
-       
+
 private:
        ///
        InsetFloatParams params_;