Martin Vermeer <[EMAIL PROTECTED]> writes:
| OK to go in?
I won't make the call on that...
tiny small comment though.
| Index: text.C
| ===================================================================
| RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/text.C,v
| retrieving revision 1.637
| diff -u -p -r1.637 text.C
| --- text.C 6 Dec 2005 14:54:21 -0000 1.637
| +++ text.C 17 Dec 2005 21:21:57 -0000
| @@ -1534,31 +1534,34 @@ void LyXText::changeCase(LCursor & cur,
| }
|
|
| -void LyXText::Delete(LCursor & cur)
| +bool LyXText::Delete(LCursor & cur)
| {
| BOOST_ASSERT(this == cur.text());
| + bool needsUpdate(false);
bool needsUpdate = false;
bitte please
| -void LyXText::backspace(LCursor & cur)
| +bool LyXText::backspace(LCursor & cur)
| {
| BOOST_ASSERT(this == cur.text());
| + bool needsUpdate(false);
ditto
--
Lgb