]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFlex.h
Stupid bug fix.
[lyx.git] / src / insets / InsetFlex.h
index 4250617eb44c26f158d7a879876723120f26b6a7..2fdc43ccb0065238c14093ff8dbfc3a99008c39b 100644 (file)
@@ -23,8 +23,7 @@ namespace lyx {
 class InsetFlex : public InsetCollapsable {
 public:
        ///
-       InsetFlex(BufferParams const &, DocumentClass * dc, 
-                       std::string const & layoutName);
+       InsetFlex(Buffer const &, std::string const & layoutName);
        ///
        docstring name() const { return from_utf8(name_); }
 
@@ -37,7 +36,7 @@ public:
        ///
        void read(Lexer & lex);
        ///
-       virtual bool allowParagraphCustomization(idx_type) const { return false; }
+       virtual bool allowParagraphCustomization(idx_type = 0) const { return false; }
 
        ///
        int plaintext(odocstream &, OutputParams const &) const;
@@ -55,14 +54,10 @@ protected:
        InsetFlex(InsetFlex const &);
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const { return new InsetFlex(*this); }
 
        ///
        std::string name_;
-       ///
-       std::set<std::string> packages_;
-       ///
-       std::string preamble_;
 };