mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
6528d97d0e
commit
e12cb40a33
@ -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:
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user