]> git.lyx.org Git - lyx.git/blobdiff - src/text_funcs.h
ws changes only
[lyx.git] / src / text_funcs.h
index 8f60fbe501915bbf8065476143993e6b9a7a971d..bd4a7674a4b1cfae0875dd87821eaabac6c29d87 100644 (file)
 #include "support/types.h"
 
 class LyXCursor;
+class LyXText;
 
 
 // do no use LyXText or BufferView here
 
 
 ///
-bool transposeChars(LyXCursor const & cursor);
+bool transposeChars(LyXText &, LyXCursor const & cursor);
 ///
-void cursorLeftOneWord(LyXCursor &, ParagraphList const &);
+void cursorLeftOneWord(LyXText &, LyXCursor &, ParagraphList const &);
 ///
-void cursorRightOneWord(LyXCursor &, ParagraphList const &);
+void cursorRightOneWord(LyXText &, LyXCursor &, ParagraphList const &);
 
 // Select current word. This depends on behaviour of
 // CursorLeftOneWord(), so it is patched as well.
-void getWord(LyXCursor & from, LyXCursor & to, lyx::word_location const loc,
+void getWord(LyXText &, LyXCursor & from, LyXCursor & to, lyx::word_location const loc,
        ParagraphList const & pars);
 
 #endif // TEXT_FUNCS_H