compile fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23442 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2008-03-04 13:16:50 +00:00
parent e4f0872233
commit 7d65f6931f

View File

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