mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
mathed61.diff
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1778 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d4ee9c38b6
commit
483458d6d4
@ -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
|
||||
|
@ -79,7 +79,8 @@ struct MathStackXIter {
|
||||
}
|
||||
|
||||
MathedXIter * pop() {
|
||||
return &item[--i];
|
||||
--i;
|
||||
return &item[i - 1];
|
||||
}
|
||||
|
||||
MathedXIter * Item(int idx) {
|
||||
|
Loading…
Reference in New Issue
Block a user