output the actual Boundary

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10250 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-07-16 16:27:08 +00:00
parent a5b556bdd6
commit 126658bf02
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-07-16 Juergen Vigna <jug@lyx.org>
* text.C (currentState): output the actual Boundary
2005-07-16 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* factory.C (createInset): fix bad logic for tabular creation

View File

@ -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