]> git.lyx.org Git - features.git/commitdiff
fix bug due to recent typo
authorAndré Pönitz <poenitz@gmx.net>
Fri, 10 Aug 2001 12:42:04 +0000 (12:42 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Fri, 10 Aug 2001 12:42:04 +0000 (12:42 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2483 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_gridinset.C

index 18dd9efd39cea61d197577095d8a1ae178525afd..1e2b6a158ea8958fdda1582231f4c15d346ba5d2 100644 (file)
@@ -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);
        }