mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
761fab540e
commit
873de089f0
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user