mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 18:24:48 +00:00
compile fix.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23442 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e4f0872233
commit
7d65f6931f
@ -703,7 +703,7 @@ void InsetMathHull::swapRow(row_type row)
|
|||||||
// swap(nonum_[row], nonum_[row + 1]);
|
// swap(nonum_[row], nonum_[row + 1]);
|
||||||
// so we do it manually:
|
// so we do it manually:
|
||||||
bool const b = nonum_[row];
|
bool const b = nonum_[row];
|
||||||
nonum_[row] = nonum_[row + 1]
|
nonum_[row] = nonum_[row + 1];
|
||||||
nonum_[row + 1] = b;
|
nonum_[row + 1] = b;
|
||||||
swap(label_[row], label_[row + 1]);
|
swap(label_[row], label_[row + 1]);
|
||||||
InsetMathGrid::swapRow(row);
|
InsetMathGrid::swapRow(row);
|
||||||
|
Loading…
Reference in New Issue
Block a user