* GuiBox.cpp:

- remove the useless "none" special length from the combo.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28153 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2009-01-14 14:10:52 +00:00
parent 5ba20465fe
commit 92c30f4294

View File

@ -62,14 +62,14 @@ static QStringList boxGuiNames()
static QStringList boxGuiSpecialLengthIds()
{
return QStringList() << "none" << "height" << "depth"
return QStringList() << "height" << "depth"
<< "totalheight" << "width";
}
static QStringList boxGuiSpecialLengthNames()
{
return QStringList() << qt_("None") << qt_("Height") << qt_("Depth")
return QStringList() << qt_("Height") << qt_("Depth")
<< qt_("Total Height") << qt_("Width");
}