]> git.lyx.org Git - lyx.git/blobdiff - src/Paragraph.h
Hide some internals of Changes:
[lyx.git] / src / Paragraph.h
index 2423b7492e0e1468d572b32c4e99d298d12c9fb6..c323c000edc830c4966527d6e6a124471331f692 100644 (file)
@@ -229,10 +229,10 @@ public:
        void setChange(pos_type pos, Change const & change);
 
        /// accept changes within the given range
-       void acceptChanges(BufferParams const & bparams, pos_type start, pos_type end);
+       void acceptChanges(pos_type start, pos_type end);
 
        /// reject changes within the given range
-       void rejectChanges(BufferParams const & bparams, pos_type start, pos_type end);
+       void rejectChanges(pos_type start, pos_type end);
 
        /// Paragraphs can contain "manual labels", for example, Description
        /// environment. The text for this user-editable label is stored in
@@ -417,10 +417,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.