From da95321339ea0dbfa6366f6b33c668b67e748a93 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Fri, 8 Nov 2002 08:44:52 +0000 Subject: [PATCH] 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 --- src/mathed/math_parser.C | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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") { -- 2.39.2