From: André Pönitz Date: Fri, 10 Aug 2001 12:42:04 +0000 (+0000) Subject: fix bug due to recent typo X-Git-Tag: 1.6.10~20862 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6c12ac0526e100da351301210f9de58f049b1487;p=features.git fix bug due to recent typo git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2483 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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); }