add missing break statement

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2889 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-10-15 16:05:08 +00:00
parent 761fab540e
commit 873de089f0
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-10-15 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* vspace.C (asLatexString): add a missing break
2001-10-15 Herbert Voss <voss@perce.de>
* 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 <a.leeming@ic.ac.uk>
* BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the

View File

@ -339,7 +339,7 @@ string const LyXLength::asLatexString() const
case PW:
case PE:
buffer << abs(static_cast<int>(val/100)) << "." << abs(static_cast<int>(val)%100) << "\\columnwidth";
break;
case PP:
buffer << abs(static_cast<int>(val/100)) << "." << abs(static_cast<int>(val)%100) << "\\pagewidth";
break;