]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insettoc.C
index 8a0471e410cb6ed5ffcde724ebec60d438af6cae..c959ee47c5aeaa0a96825bb6b2b57897dc78ca88 100644 (file)
 
 #include "insettoc.h"
 
+#include "buffer.h"
 #include "dispatchresult.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "metricsinfo.h"
-#include "toc.h"
+#include "TocBackend.h"
 
 #include "support/std_ostream.h"
 
-using lyx::docstring;
-using lyx::odocstream;
+
+namespace lyx {
 
 using std::string;
 using std::ostream;
 
 
-
 InsetTOC::InsetTOC(InsetCommandParams const & p)
        : InsetCommand(p, "toc")
 {}
@@ -60,7 +60,7 @@ int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       lyx::toc::asciiTocList(lyx::toc::getType(getCmdName()), buffer, os);
+       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
 
        os << "\n";
        return 0;
@@ -74,3 +74,6 @@ int InsetTOC::docbook(Buffer const &, odocstream & os,
                os << "<toc></toc>";
        return 0;
 }
+
+
+} // namespace lyx