]> git.lyx.org Git - lyx.git/blobdiff - src/iterators.h
remove noload/don't typeset
[lyx.git] / src / iterators.h
index f34e76917dc7af37397a69723159abfd620056f6..ba85b6c46aade4f17485cd46e243a36e40b10147 100644 (file)
 class ParPosition {
 public:
        ParPosition(Paragraph * p)
-               : par(p), it(p->inset_iterator_begin()), index(-1) {}
+               : par(p), it(p->insetlist.begin()), index(-1) {}
        ///
        Paragraph * par;
        ///
-       Paragraph::inset_iterator it;
+       InsetList::iterator it;
        ///
        int index;
 };
@@ -50,7 +50,7 @@ public:
                return positions.top().par;
        }
        ///
-       PosHolder::size_type size() const 
+       PosHolder::size_type size() const
                { return positions.size(); }
        ///
        friend