]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.h
move the validation code from InsetFlex to InsetCollapsable
[lyx.git] / src / insets / InsetTOC.h
index 63df80b6b91cd5c019af0338e30c054c2ae2e69a..4dce5882a49be944a70d682aa29aa5f5a81c362f 100644 (file)
@@ -24,7 +24,7 @@ public:
        ///
        explicit InsetTOC(InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -32,20 +32,18 @@ public:
        ///
        DisplayType display() const { return AlignCenter; }
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
        ///
-       static CommandInfo const * findInfo(std::string const &);
+       static ParamInfo const & findInfo(std::string const &);
        ///
        static std::string defaultCommand() { return "tableofcontents"; };
        ///
        static bool isCompatibleCommand(std::string const & cmd)
-               {return cmd == defaultCommand(); }
+               { return cmd == defaultCommand(); }
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const { return new InsetTOC(*this); }
 };