Rename the "external tools menu" category to "uncategorized".

Also shows an explaining tool tip now.
This commit is contained in:
con
2011-03-03 18:33:43 +01:00
parent a3cfa6919e
commit 79c899636b

View File

@@ -107,7 +107,9 @@ QVariant ExternalToolModel::data(const QString &category, int role) const
switch (role) {
case Qt::DisplayRole:
case Qt::EditRole:
return category.isEmpty() ? tr("External Tools Menu") : category;
return category.isEmpty() ? tr("Uncategorized") : category;
case Qt::ToolTipRole:
return category.isEmpty() ? tr("Tools that will appear directly under the External Tools menu.") : QVariant();
default:
break;
}