]> git.lyx.org Git - features.git/commitdiff
* GuiBox.cpp:
authorJürgen Spitzmüller <spitz@lyx.org>
Wed, 14 Jan 2009 14:10:52 +0000 (14:10 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Wed, 14 Jan 2009 14:10:52 +0000 (14:10 +0000)
- 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

index 244b8a0f0ffd15eaad000e438be65256276a7054..ff4fb6f3348650688fc43855702d1b0f9be19c7f 100644 (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");
 }