]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.cpp
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetTOC.cpp
index a2f1cb9ddfc690bb30564be474de13e89b6a88dd..723d539d5be60f2eb0f5099fd3c0af51db3ee132 100644 (file)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
 #include "Buffer.h"
 #include "DispatchResult.h"
 #include "FuncRequest.h"
-#include "support/gettext.h"
 #include "MetricsInfo.h"
 #include "OutputParams.h"
 #include "TocBackend.h"
 
+#include "support/gettext.h"
+
 #include <ostream>
 
 using namespace std;
@@ -36,39 +37,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>";