From: Lars Gullik Bjønnes Date: Sat, 6 Apr 2002 13:00:21 +0000 (+0000) Subject: try to always return true and see what happens... X-Git-Tag: 1.6.10~19485 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=fb46c0a1b58b7c673c81d95ec9cc0c0a399e4849;p=lyx.git try to always return true and see what happens... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3919 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 986e02e69f..efb1d3ba09 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-04-06 Lars Gullik Bjønnes + + * text2.C (fullRebreak): try to always return true and see what + happens... + 2002-04-04 Jean-Marc Lasgouttes * MenuBackend.C (expand): use Floating::listName diff --git a/src/text2.C b/src/text2.C index f9d2a574d6..6479cf7c15 100644 --- a/src/text2.C +++ b/src/text2.C @@ -909,7 +909,7 @@ bool LyXText::fullRebreak(BufferView * bview) need_break_row = 0; return true; } - return false; + return true; }