]> git.lyx.org Git - lyx.git/blobdiff - src/toc.cpp
Fulfill promise to Andre: TextClass_ptr --> TextClassPtr.
[lyx.git] / src / toc.cpp
index d635ac1259b8e91081745499a2ee58bd36385a0a..cca7c72610e0fb0426d9589a65c247da67659322 100644 (file)
@@ -17,7 +17,7 @@
 #include "Buffer.h"
 #include "BufferParams.h"
 #include "FuncRequest.h"
-#include "LyXText.h"
+#include "Text.h"
 #include "LyXAction.h"
 #include "Paragraph.h"
 #include "ParIterator.h"
@@ -31,9 +31,9 @@ namespace toc {
 
 void outline(OutlineOp mode,  Cursor & cur)
 {
-       Buffer * buf = & cur.buffer();
+       Buffer & buf = cur.buffer();
        pit_type & pit = cur.pit();
-       ParagraphList & pars = buf->text().paragraphs();
+       ParagraphList & pars = buf.text().paragraphs();
        ParagraphList::iterator bgn = pars.begin();
        // The first paragraph of the area to be copied:
        ParagraphList::iterator start = boost::next(bgn, pit);
@@ -41,10 +41,10 @@ void outline(OutlineOp mode,  Cursor & cur)
        ParagraphList::iterator finish = start;
        ParagraphList::iterator end = pars.end();
 
-       LyXTextClass::const_iterator lit =
-               buf->params().getLyXTextClass().begin();
-       LyXTextClass::const_iterator const lend =
-               buf->params().getLyXTextClass().end();
+       TextClass::const_iterator lit =
+               buf.params().getTextClass().begin();
+       TextClass::const_iterator const lend =
+               buf.params().getTextClass().end();
 
        int const thistoclevel = start->layout()->toclevel;
        int toclevel;
@@ -88,7 +88,7 @@ void outline(OutlineOp mode,  Cursor & cur)
                }
                case Down: {
                        // Go down out of current header:
-                       if (finish != end)
+                       if (finish != end)
                                ++finish;
                        // Find next same-level header:
                        for (; finish != end; ++finish) {