From: Jean-Marc Lasgouttes Date: Sat, 16 Jul 2005 16:27:08 +0000 (+0000) Subject: output the actual Boundary X-Git-Tag: 1.6.10~14089 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=126658bf021387ede9f47d15d4c8aff0b8ed8b6c;p=features.git output the actual Boundary git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10250 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index f87d72d142..fc96482f8a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-07-16 Juergen Vigna + + * text.C (currentState): output the actual Boundary + 2005-07-16 Jean-Marc Lasgouttes * factory.C (createInset): fix bad logic for tabular creation diff --git a/src/text.C b/src/text.C index 33df190840..a7f4d054b9 100644 --- a/src/text.C +++ b/src/text.C @@ -2213,6 +2213,7 @@ string LyXText::currentState(LCursor & cur) os << _(", Paragraph: ") << cur.pit(); os << _(", Id: ") << par.id(); os << _(", Position: ") << cur.pos(); + os << _(", Boundary: ") << cur.boundary(); // Row & row = cur.textRow(); // os << bformat(_(", Row b:%1$d e:%2$d"), row.pos(), row.endpos()); #endif