]> git.lyx.org Git - lyx.git/commitdiff
doxygen documentation fix
authorMartin Vermeer <martin.vermeer@hut.fi>
Sun, 12 Mar 2006 10:06:59 +0000 (10:06 +0000)
committerMartin Vermeer <martin.vermeer@hut.fi>
Sun, 12 Mar 2006 10:06:59 +0000 (10:06 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13344 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/lyxtext.h

index a0b9e02f18c86975fae697dab46e6850af68ac8e..bed26ff8ef7eb3c5d04e4a312bb96668dc0ca0d6 100644 (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;
index 30f17b8e8941a0d6998e9aa38a947b9b6cfa0e7a..ff60fe323b6b8c648f4abebdff8fe7733e4651ba 100644 (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);