From 44cf1d0e18b659d234bcdd29060262e78c4548dd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Wed, 17 Apr 2002 21:05:37 +0000 Subject: [PATCH] fix a bitfield bug git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4020 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/ChangeLog | 7 ++++++- src/lyxtextclass.C | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 966b5a71ef..174d48c9bd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-04-17 Lars Gullik Bjønnes + + * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike + Ressler. + 2002-04-16 Juergen Vigna * text2.C (setCursor): set also the irow(). @@ -8,7 +13,7 @@ * lyxrow.h: added irow helper function same as other (i) functions. - * BufferView_pimpl.C (cursorPrevious): + * BufferView_pimpl.C (cursorPrevious): (cursorNext): fixed for insets! 2002-04-15 Juergen Vigna diff --git a/src/lyxtextclass.C b/src/lyxtextclass.C index 9418b24464..75d31c6232 100644 --- a/src/lyxtextclass.C +++ b/src/lyxtextclass.C @@ -291,7 +291,7 @@ bool LyXTextClass::Read(string const & filename, bool merge) case TC_PROVIDESURL: if (lexrc.next() && lexrc.getInteger()) - provides_ = url; + provides_ |= url; break; case TC_LEFTMARGIN: // left margin type -- 2.39.2