]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.cpp
Fix bug http://bugzilla.lyx.org/show_bug.cgi?id=4910 by creating InsetText::addToToc().
[lyx.git] / src / insets / InsetTOC.cpp
index a2f1cb9ddfc690bb30564be474de13e89b6a88dd..80abdf91634d65f6e89f4c25020d342f2c1bad8e 100644 (file)
@@ -36,39 +36,29 @@ ParamInfo const & InsetTOC::findInfo(string const & /* cmdName */)
 {
        static ParamInfo param_info_;
        if (param_info_.empty()) {
-               param_info_.add("type", false);
+               param_info_.add("type", ParamInfo::LATEX_REQUIRED);
        }
        return param_info_;
 }
 
 
-Inset * InsetTOC::clone() const
-{
-       return new InsetTOC(*this);
-}
-
-
-docstring const InsetTOC::getScreenLabel(Buffer const & buf) const
+docstring InsetTOC::screenLabel() const
 {
        if (getCmdName() == "tableofcontents")
-               return buf.B_("Table of Contents");
+               return buffer().B_("Table of Contents");
        return _("Unknown TOC type");
 }
 
 
-int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
-                       OutputParams const &) const
+int InsetTOC::plaintext(odocstream & os, OutputParams const &) const
 {
-       os << getScreenLabel(buffer) << "\n\n";
-
-       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
-
+       os << screenLabel() << "\n\n";
+       buffer().tocBackend().writePlaintextTocList(getCmdName(), os);
        return PLAINTEXT_NEWLINE;
 }
 
 
-int InsetTOC::docbook(Buffer const &, odocstream & os,
-                     OutputParams const &) const
+int InsetTOC::docbook(odocstream & os, OutputParams const &) const
 {
        if (getCmdName() == "tableofcontents")
                os << "<toc></toc>";