fix from Alfredo for matrix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5786 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-12-07 18:14:02 +00:00
parent 6528d97d0e
commit e12cb40a33
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-12-07 John Levon <levon@movementarian.org>
* QMathMatrixDialog.C: row/column insert was inverted; fix
by Alfredo Braunstein
2002-12-07 John Levon <levon@movementarian.org>
* QDelimiterDialog.C:

View File

@ -79,8 +79,8 @@ void QMathMatrixDialog::slotOK()
{
char const c = v_align_c[valignCO->currentItem()];
char const * sh = halignED->text().latin1();
int const nx = int(rowsSB->value());
int const ny = int(columnsSB->value());
int const nx = int(columnsSB->value());
int const ny = int(rowsSB->value());
ostringstream os;
os << nx << ' ' << ny << ' ' << c << ' ' << sh;