Andr�'s b.diff

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2856 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-10-10 15:28:19 +00:00
parent dbf9e27a97
commit bcba589379
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-10-10 André Pönitz <poenitz@htwm.de>
* FormsMathMatrix.C: add missing space between v- and h-alignment
parameters
2001-10-09 Herbert Voss <voss@perce.de> 2001-10-09 Herbert Voss <voss@perce.de>
* FormTexinfo.[Ch]: * FormTexinfo.[Ch]:

View File

@ -92,7 +92,7 @@ void FormMathsMatrix::apply()
int const ny = int(fl_get_slider_value(dialog_->slider_rows) + 0.5); int const ny = int(fl_get_slider_value(dialog_->slider_rows) + 0.5);
ostringstream ost; ostringstream ost;
ost << nx << ' ' << ny << ' ' << c << sh; ost << nx << ' ' << ny << ' ' << c << ' ' << sh;
lv_->getLyXFunc()->dispatch(LFUN_INSERT_MATRIX, ost.str().c_str()); lv_->getLyXFunc()->dispatch(LFUN_INSERT_MATRIX, ost.str().c_str());
} }