From 098a6f50249d653aff92c88e5ccbfd918a6838ed Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Wed, 30 Mar 2016 13:07:00 +0200 Subject: [PATCH] Todo: Remove "Settings" from project settings panel title Change-Id: I1e611d8bece7381aa61549323dde66ccd7cc0c61 Reviewed-by: Leena Miettinen Reviewed-by: Alessandro Portale --- doc/src/howto/creator-ui.qdoc | 2 +- doc/src/projects/creator-projects-settings-overview.qdoc | 2 +- src/plugins/todo/todoplugin.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/howto/creator-ui.qdoc b/doc/src/howto/creator-ui.qdoc index 97b8c2d1e04..0ea439f9522 100644 --- a/doc/src/howto/creator-ui.qdoc +++ b/doc/src/howto/creator-ui.qdoc @@ -491,7 +491,7 @@ To determine whether the keywords in the whole project or in the current file are displayed by default, select \uicontrol {Scanning scope}. - To exclude files from scanning, select \uicontrol {To-Do Settings} in the + To exclude files from scanning, select \uicontrol {To-Do} in the \uicontrol Projects mode. Select \uicontrol Add and enter a regular expression that matches the path to files to exclude. Use a forward slash (/) as a separator in the path also on Windows. diff --git a/doc/src/projects/creator-projects-settings-overview.qdoc b/doc/src/projects/creator-projects-settings-overview.qdoc index e6edbeb016e..1d1dbeaceea 100644 --- a/doc/src/projects/creator-projects-settings-overview.qdoc +++ b/doc/src/projects/creator-projects-settings-overview.qdoc @@ -97,7 +97,7 @@ \li \l{Using Clang Static Analyzer}{Clang Static Analyzer} - \li \l{To-Do List}{To-Do Settings} (experimental) + \li \l{To-Do List}{To-Do} (experimental) \endlist diff --git a/src/plugins/todo/todoplugin.cpp b/src/plugins/todo/todoplugin.cpp index c3bd1a4b500..bff4b611b94 100644 --- a/src/plugins/todo/todoplugin.cpp +++ b/src/plugins/todo/todoplugin.cpp @@ -70,7 +70,7 @@ bool TodoPlugin::initialize(const QStringList& args, QString *errMsg) auto panelFactory = new ProjectExplorer::ProjectPanelFactory(); panelFactory->setPriority(100); - panelFactory->setDisplayName(TodoProjectSettingsWidget::tr("To-Do Settings")); + panelFactory->setDisplayName(TodoProjectSettingsWidget::tr("To-Do")); panelFactory->setCreateWidgetFunction([this, panelFactory](ProjectExplorer::Project *project) -> QWidget * { auto *panel = new ProjectExplorer::PropertiesPanel; panel->setDisplayName(panelFactory->displayName());