From: Jürgen Spitzmüller Date: Wed, 14 Jan 2009 14:10:52 +0000 (+0000) Subject: * GuiBox.cpp: X-Git-Tag: 2.0.0~7428 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=92c30f429461a5927253fd84e6d073cbce154c3d;p=features.git * 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 --- diff --git a/src/frontends/qt4/GuiBox.cpp b/src/frontends/qt4/GuiBox.cpp index 244b8a0f0f..ff4fb6f334 100644 --- a/src/frontends/qt4/GuiBox.cpp +++ b/src/frontends/qt4/GuiBox.cpp @@ -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"); }