From: André Pönitz Date: Fri, 8 Nov 2002 08:44:52 +0000 (+0000) Subject: fix bug when reading \hline (did not work at all anymore...) X-Git-Tag: 1.6.10~18004 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=da95321339ea0dbfa6366f6b33c668b67e748a93;p=features.git fix bug when reading \hline (did not work at all anymore...) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5603 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_parser.C b/src/mathed/math_parser.C index 7c5d2d51cd..3afff07b3e 100644 --- a/src/mathed/math_parser.C +++ b/src/mathed/math_parser.C @@ -940,8 +940,7 @@ void Parser::parse1(MathGridInset & grid, unsigned flags, } else if (t.cs() == "hline") { - if (grid.asHullInset()) - grid.asHullInset()->rowinfo(cellrow + 1); + grid.rowinfo(cellrow).lines_ ++; } else if (t.cs() == "sqrt") {