mathed61.diff

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1778 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-03-15 18:22:33 +00:00
parent d4ee9c38b6
commit 483458d6d4
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2001-03-15 André Pönitz <poenitz@htwm.de>
* math_cursor.C: fix bug (cursor was leaving two insets at a time instead
of one)
2001-03-15 Lars Gullik Bjønnes <larsbj@trylle.birdstep.com>
* math_macrotable.h: noncopyable is in namespace boost

View File

@ -79,7 +79,8 @@ struct MathStackXIter {
}
MathedXIter * pop() {
return &item[--i];
--i;
return &item[i - 1];
}
MathedXIter * Item(int idx) {