mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 15:05:56 +00:00
fix a bitfield bug
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4020 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4ac2c6df98
commit
44cf1d0e18
@ -1,3 +1,8 @@
|
|||||||
|
2002-04-17 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||||
|
|
||||||
|
* lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
|
||||||
|
Ressler.
|
||||||
|
|
||||||
2002-04-16 Juergen Vigna <jug@sad.it>
|
2002-04-16 Juergen Vigna <jug@sad.it>
|
||||||
|
|
||||||
* text2.C (setCursor): set also the irow().
|
* text2.C (setCursor): set also the irow().
|
||||||
|
@ -291,7 +291,7 @@ bool LyXTextClass::Read(string const & filename, bool merge)
|
|||||||
|
|
||||||
case TC_PROVIDESURL:
|
case TC_PROVIDESURL:
|
||||||
if (lexrc.next() && lexrc.getInteger())
|
if (lexrc.next() && lexrc.getInteger())
|
||||||
provides_ = url;
|
provides_ |= url;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TC_LEFTMARGIN: // left margin type
|
case TC_LEFTMARGIN: // left margin type
|
||||||
|
Loading…
Reference in New Issue
Block a user