diff --git a/src/ChangeLog b/src/ChangeLog index b2461abc1c..bb62c31d1b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-10-15 Jean-Marc Lasgouttes + + * vspace.C (asLatexString): add a missing break + 2001-10-15 Herbert Voss * vspace.C (asLatexString): fix bug in output of string for l% and p%. @@ -154,7 +158,8 @@ of a cursor (row, etc.) after a character has been deleted (deleteEmptyParagraphMechanism): call the method above on _all_ cursors held by the LyXText when a double space has been - detected/deleted. + detected/deleted. + 2001-09-27 Angus Leeming * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the diff --git a/src/vspace.C b/src/vspace.C index 78888c47f1..dd2f63a348 100644 --- a/src/vspace.C +++ b/src/vspace.C @@ -339,7 +339,7 @@ string const LyXLength::asLatexString() const case PW: case PE: buffer << abs(static_cast(val/100)) << "." << abs(static_cast(val)%100) << "\\columnwidth"; - + break; case PP: buffer << abs(static_cast(val/100)) << "." << abs(static_cast(val)%100) << "\\pagewidth"; break;