From 328760c2232460ee7857328ca3a4602608fd87a0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 26 Nov 2003 10:42:42 +0000 Subject: [PATCH] fix table crash by initializing cursor par to 0. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8139 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/lyxcursor.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lyxcursor.C b/src/lyxcursor.C index 3caa2ead36..491c2e3976 100644 --- a/src/lyxcursor.C +++ b/src/lyxcursor.C @@ -17,7 +17,7 @@ LyXCursor::LyXCursor() - : par_(-1), pos_(0), boundary_(false), x_(0), y_(0) + : par_(0), pos_(0), boundary_(false), x_(0), y_(0) {} -- 2.39.5