doxygen documentation fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13344 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Martin Vermeer 2006-03-12 10:06:59 +00:00
parent 41cfebb8eb
commit 0887662683
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2006-03-12 Martin Vermeer <martin.vermeer@hut.fi>
* lyxtext.h: doxygen documentation fix
2006-03-11 Martin Vermeer <martin.vermeer@hut.fi>
* paragraph.[Ch] (write, lookupChange, lookupChangeFull;

View File

@ -220,11 +220,14 @@ public:
void cursorTop(LCursor & cur);
///
void cursorBottom(LCursor & cur);
///
/// Delete character at cursor. Honour change tracking
bool Delete(LCursor & cur);
///
/** At cursor position 0, merge paragraph with the one before it.
* Ignore CT (this is used in \c acceptChange, \c rejectChange for
* physical deletion of paragraph break)
*/
bool backspacePos0(LCursor & cur);
///
/// Delete character before cursor. Honour CT
bool backspace(LCursor & cur);
///
bool selectWordWhenUnderCursor(LCursor & cur, lyx::word_location);