]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/qt_helpers.cpp
Fix crash
[lyx.git] / src / frontends / qt4 / qt_helpers.cpp
index fc1ddb4600555165104b419cdcd62db47eacd1df..1e3befc79fffb040e7d7091802ac02aae468c244 100644 (file)
@@ -21,7 +21,6 @@
 
 #include "BufferParams.h"
 #include "FloatList.h"
-#include "IndicesList.h"
 #include "Language.h"
 #include "Length.h"
 #include "TextClass.h"
@@ -596,61 +595,6 @@ QStringList fileFilters(QString const & desc)
 }
 
 
-QString guiName(string const & type, BufferParams const & bp)
-{
-       // FIXME: hardcoded
-       if (type == "tableofcontents")
-               return qt_("Table of Contents");
-       if (type == "child")
-               return qt_("Child Documents");
-       if (type == "graphics")
-               return qt_("Graphics");
-       if (type == "equation")
-               return qt_("Equations");
-       if (type == "external")
-               return qt_("External material");
-       if (type == "footnote")
-               return qt_("Footnotes");
-       if (type == "listing")
-               return qt_("Listings");
-       if (type == "index")
-               return qt_("Index Entries");
-       if (type == "marginalnote")
-               return qt_("Marginal notes");
-       if (type == "math-macro")
-               return qt_("Math macros");
-       if (type == "nomencl")
-               return qt_("Nomenclature Entries");
-       if (type == "note")
-               return qt_("Notes");
-       if (type == "citation")
-               return qt_("Citations");
-       if (type == "label")
-               return qt_("Labels and References");
-       if (type == "branch")
-               return qt_("Branches");
-       if (type == "change")
-               return qt_("Changes");
-       if (type == "senseless")
-               return qt_("Senseless");
-       if (prefixIs(type, "index:")) {
-               string const itype = split(type, ':');
-               IndicesList const & indiceslist = bp.indiceslist();
-               Index const * index = indiceslist.findShortcut(from_utf8(itype));
-               docstring indextype = _("unknown type!");
-               if (index)
-                       indextype = index->index();
-               return toqstr(bformat(_("Index Entries (%1$s)"), indextype));
-       }
-
-       FloatList const & floats = bp.documentClass().floats();
-       if (floats.typeExist(type))
-               return qt_(floats.getType(type).listName());
-
-       return toqstr(bp.documentClass().outlinerName(type));
-}
-
-
 QString formatToolTip(QString text, int em)
 {
        // 1. QTooltip activates word wrapping only if mightBeRichText()