]> git.lyx.org Git - lyx.git/blobdiff - src/Paragraph.h
Kornel's gcc compile fix.
[lyx.git] / src / Paragraph.h
index e1cb33e0f1cc9ebf42a90aecf077dc96fad2a16d..0336ffead27a425628b4e7acf32a0c5fd85a36bb 100644 (file)
@@ -178,10 +178,6 @@ public:
        ///
        Inset const & inInset() const;
        ///
-       InsetCode ownerCode() const;
-       ///
-       bool forcePlainLayout() const;
-       ///
        bool allowParagraphCustomization() const;
        ///
        bool usePlainLayout() const;
@@ -210,13 +206,13 @@ public:
        /// is there a change within the given range ?
        bool isChanged(pos_type start, pos_type end) const;
        /// is there an unchanged char at the given pos ?
-       bool isUnchanged(pos_type pos) const;
+       bool isChanged(pos_type pos) const;
        /// is there an insertion at the given pos ?
        bool isInserted(pos_type pos) const;
        /// is there a deletion at the given pos ?
        bool isDeleted(pos_type pos) const;
        /// is the whole paragraph deleted ?
-       bool isFullyDeleted(pos_type start, pos_type end) const;
+       bool isDeleted(pos_type start, pos_type end) const;
 
        /// will the paragraph be physically merged with the next
        /// one if the imaginary end-of-par character is logically deleted?
@@ -417,10 +413,11 @@ public:
        ///
        void updateWords();
 
-       /// Spellcheck word at position \p from and fill in found misspelled word.
+       /// Spellcheck word at position \p from and fill in found misspelled word
+       /// and \p suggestions if \p do_suggestion is true.
        /// \return true if pointed word is misspelled.
        bool spellCheck(pos_type & from, pos_type & to, WordLangTuple & wl,
-               docstring_list & suggestions) const;
+               docstring_list & suggestions, bool do_suggestion =  true) const;
 
        /// Spellcheck word at position \p pos.
        /// \return true if pointed word is misspelled.