]> git.lyx.org Git - lyx.git/blobdiff - src/DocIterator.h
Dummy Document.tex: this file was missing but input in our test file
[lyx.git] / src / DocIterator.h
index 3d5647c8931b55008a81f1470429bc94266a2ceb..74dd47438ff85609ba5b8917bcadcd20c3a44c17 100644 (file)
@@ -15,7 +15,7 @@
 #include "CursorSlice.h"
 
 #include <vector>
-
+#include <algorithm>
 
 namespace lyx {
 
@@ -75,6 +75,9 @@ public:
        /// is this the last possible position?
        bool atLastPos() const { return pit() == lastpit() && pos() == lastpos(); }
 
+       /// checks the cursor slices for disabled spell checker insets
+       bool allowSpellCheck() const;
+
        //
        // access to slice at tip
        //
@@ -202,7 +205,7 @@ public:
        /// move backward one paragraph
        void backwardPar();
        /// move backward one inset
-       /// FIXME: This is not implemented!
+       /// not used currently, uncomment if you need it
        //void backwardInset();
 
        /// are we some 'extension' (i.e. deeper nested) of the given iterator