From 6c12ac0526e100da351301210f9de58f049b1487 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Fri, 10 Aug 2001 12:42:04 +0000 Subject: [PATCH] fix bug due to recent typo git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2483 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_gridinset.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/math_gridinset.C b/src/mathed/math_gridinset.C index 18dd9efd39..1e2b6a158e 100644 --- a/src/mathed/math_gridinset.C +++ b/src/mathed/math_gridinset.C @@ -239,7 +239,7 @@ void MathGridInset::write(std::ostream & os, bool fragile) const for (int row = 0; row < nrows(); ++row) { for (int col = 0; col < ncols(); ++col) { cell(index(row, col)).write(os, fragile); - os << eocString(row); + os << eocString(col); } os << eolString(row); } -- 2.39.2