]> git.lyx.org Git - features.git/commitdiff
Andr�'s b.diff
authorAngus Leeming <leeming@lyx.org>
Wed, 10 Oct 2001 15:28:19 +0000 (15:28 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 10 Oct 2001 15:28:19 +0000 (15:28 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2856 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/FormMathsMatrix.C

index 2df2d21a74aa60bc4bf9bda3be8025264336c47a..8f201d82934cc328875fa2f7fa6742fbfa7bb5fa 100644 (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>
 
        * FormTexinfo.[Ch]:
index 186d5b4c7583840faba506d85bab3e1131b7972d..23a166d41c08f973a2ccd37cc261b68311b4a298 100644 (file)
@@ -92,7 +92,7 @@ void FormMathsMatrix::apply()
        int const ny = int(fl_get_slider_value(dialog_->slider_rows) + 0.5);
  
        ostringstream ost;
-       ost << nx << ' ' << ny << ' ' << c << sh;
+       ost << nx << ' ' << ny << ' ' << c << ' ' << sh;
  
        lv_->getLyXFunc()->dispatch(LFUN_INSERT_MATRIX, ost.str().c_str());
 }