]> git.lyx.org Git - lyx.git/blobdiff - src/InsetIterator.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / InsetIterator.h
index 9f0bbd82cb8df4798de27cf373909332b3969849..0029865a760657e348818567ff4d57361669197a 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -22,20 +22,20 @@ class InsetIterator : public DocIterator
 {
 public:
        ///
-       explicit InsetIterator(InsetBase & inset);
+       explicit InsetIterator(Inset & inset);
        ///
        void operator++() { forwardInset(); }
        ///
        void operator--();
        ///
-       InsetBase * operator->() { return nextInset(); }
+       Inset * operator->() { return nextInset(); }
        ///
-       InsetBase & operator*() { return *nextInset(); }
+       Inset & operator*() { return *nextInset(); }
 };
 
-InsetIterator inset_iterator_begin(InsetBase & inset);
+InsetIterator inset_iterator_begin(Inset & inset);
 
-InsetIterator inset_iterator_end(InsetBase & inset);
+InsetIterator inset_iterator_end(Inset & inset);