From 92c30f429461a5927253fd84e6d073cbce154c3d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Wed, 14 Jan 2009 14:10:52 +0000 Subject: [PATCH] * 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 --- src/frontends/qt4/GuiBox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); } -- 2.39.5