From 5fbbd863db2d0a21598e516a96d96b459a1c9ab6 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 28 Mar 2013 08:32:26 -0400 Subject: [PATCH] Remove "List of" from outliner dropdown. --- src/frontends/qt4/qt_helpers.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/frontends/qt4/qt_helpers.cpp b/src/frontends/qt4/qt_helpers.cpp index 259696b5fc..17d138fc8d 100644 --- a/src/frontends/qt4/qt_helpers.cpp +++ b/src/frontends/qt4/qt_helpers.cpp @@ -571,29 +571,29 @@ QString guiName(string const & type, BufferParams const & bp) if (type == "child") return qt_("Child Documents"); if (type == "graphics") - return qt_("List of Graphics"); + return qt_("Graphics"); if (type == "equation") - return qt_("List of Equations"); + return qt_("Equations"); if (type == "footnote") - return qt_("List of Footnotes"); + return qt_("Footnotes"); if (type == "listing") - return qt_("List of Listings"); + return qt_("Listings"); if (type == "index") - return qt_("List of Index Entries"); + return qt_("Index Entries"); if (type == "marginalnote") - return qt_("List of Marginal notes"); + return qt_("Marginal notes"); if (type == "nomencl") return qt_("Nomenclature Entries"); if (type == "note") - return qt_("List of Notes"); + return qt_("Notes"); if (type == "citation") - return qt_("List of Citations"); + return qt_("Citations"); if (type == "label") return qt_("Labels and References"); if (type == "branch") - return qt_("List of Branches"); + return qt_("Branches"); if (type == "change") - return qt_("List of Changes"); + return qt_("Changes"); FloatList const & floats = bp.documentClass().floats(); if (floats.typeExist(type)) -- 2.39.5