]> git.lyx.org Git - lyx.git/blobdiff - src/buffer.h
Fix working of the spellchecker dialog with ispell when there are no
[lyx.git] / src / buffer.h
index a68acbc26399c9a7a2a019ccae6e6ca67f4640d5..5460dec970680bd5f2af54cb2ae24d1f36a0bacd 100644 (file)
@@ -30,6 +30,7 @@ class LyXRC;
 class TeXErrors;
 class LaTeXFeatures;
 class Language;
+class ParIterator;
 
 // When lyx 1.3.x starts we should enable this
 // btw. we should also test this with 1.2 so that we
@@ -327,7 +328,7 @@ public:
        TexRow texrow;
 private:
         ///
-       void docBookHandleCaption(std::ostream & os, string & inner_tag,
+       void docbookHandleCaption(std::ostream & os, string & inner_tag,
                                  Paragraph::depth_type depth, int desc_on,
                                  Paragraph * & par);
        /// Open SGML/XML tag.
@@ -451,6 +452,12 @@ public:
        inset_iterator inset_const_iterator_end() const {
                return inset_iterator();
        }
+
+       ///
+       ParIterator par_iterator_begin();
+       ///
+       ParIterator par_iterator_end();
+
        ///
        Inset * getInsetFromID(int id_arg) const;
 };
@@ -600,4 +607,5 @@ bool operator!=(Buffer::inset_iterator const & iter1,
                Buffer::inset_iterator const & iter2) {
        return !(iter1 == iter2);
 }
+
 #endif