From 306ebdf80b77570bfd87be39cf3c638b1bf92bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20St=C3=B6hr?= Date: Sun, 25 Jul 2010 00:17:48 +0000 Subject: [PATCH] Length.cpp: fix sort order - in all other files we have PTH before PPH git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35012 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Length.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Length.cpp b/src/Length.cpp index 4b269aa315..288a54de62 100644 --- a/src/Length.cpp +++ b/src/Length.cpp @@ -96,12 +96,12 @@ string const Length::asLatexString() const case PLW: os << val_ / 100.0 << "\\linewidth"; break; - case PPH: - os << val_ / 100.0 << "\\paperheight"; - break; case PTH: os << val_ / 100.0 << "\\textheight"; break; + case PPH: + os << val_ / 100.0 << "\\paperheight"; + break; default: os << val_ << unit_name[unit_]; break;