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
This commit is contained in:
Uwe Stöhr 2010-07-25 00:17:48 +00:00
parent 3dabf9d871
commit 306ebdf80b

View File

@ -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;