From 998281c5c91c3bc53edfb3528a7483c294e876f1 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@nokia.com> Date: Fri, 21 Oct 2011 16:39:14 +0200 Subject: [PATCH] "Build Issues" was renamed to "Issues" Change-Id: If514e2497a52456bfd16aaebf2a7c83def4621f7 Reviewed-by: Eike Ziller <eike.ziller@nokia.com> --- doc/api/qtcreator-dev.qdoc | 4 ++-- src/plugins/analyzerbase/analyzerplugin.cpp | 2 +- src/plugins/projectexplorer/buildmanager.cpp | 4 ++-- src/plugins/projectexplorer/ioutputparser.cpp | 2 +- src/plugins/projectexplorer/taskwindow.h | 2 +- src/plugins/qt4projectmanager/makestep.cpp | 2 +- src/plugins/qt4projectmanager/qmakestep.cpp | 2 +- src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp | 2 +- src/plugins/tasklist/TaskList.pluginspec.in | 2 +- src/plugins/tasklist/tasklistplugin.cpp | 2 +- src/plugins/valgrind/memcheckerrorview.cpp | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/api/qtcreator-dev.qdoc b/doc/api/qtcreator-dev.qdoc index 38379ab01b1..356a37dfcc0 100644 --- a/doc/api/qtcreator-dev.qdoc +++ b/doc/api/qtcreator-dev.qdoc @@ -215,11 +215,11 @@ file, which is then opened within Qt Creator. You provide an editor (probably read-only) for handling this file. For lists of issues, consider creating task list files which are shown in - the \gui {Build Issues} output + the \gui {Issues} output pane. \list \o \l{http://doc.qt.nokia.com/qtcreator/creator-task-lists.html} - {Showing Task List Files in the Build Issues Pane} + {Showing Task List Files in the Issues Pane} \o \l{Creating Plugins} \o \l{Qt Creator Coding Rules} \o \l{Menus and Menu Items} diff --git a/src/plugins/analyzerbase/analyzerplugin.cpp b/src/plugins/analyzerbase/analyzerplugin.cpp index 134b5ca5211..be67c60c0e6 100644 --- a/src/plugins/analyzerbase/analyzerplugin.cpp +++ b/src/plugins/analyzerbase/analyzerplugin.cpp @@ -82,7 +82,7 @@ bool AnalyzerPlugin::initialize(const QStringList &arguments, QString *errorStri // Task integration. ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); ProjectExplorer::TaskHub *hub = pm->getObject<ProjectExplorer::TaskHub>(); - //: Category under which Analyzer tasks are listed in build issues view + //: Category under which Analyzer tasks are listed in Issues view hub->addCategory(QLatin1String(Constants::ANALYZERTASK_ID), tr("Analyzer")); return true; diff --git a/src/plugins/projectexplorer/buildmanager.cpp b/src/plugins/projectexplorer/buildmanager.cpp index 0a5e2db5c3d..c66c3d0f7e3 100644 --- a/src/plugins/projectexplorer/buildmanager.cpp +++ b/src/plugins/projectexplorer/buildmanager.cpp @@ -157,9 +157,9 @@ BuildManager::BuildManager(ProjectExplorerPlugin *parent) void BuildManager::extensionsInitialized() { d->m_taskHub->addCategory(Constants::TASK_CATEGORY_COMPILE, - tr("Compile", "Category for compiler isses listened under 'Build Issues'")); + tr("Compile", "Category for compiler isses listed under 'Issues'")); d->m_taskHub->addCategory(Constants::TASK_CATEGORY_BUILDSYSTEM, - tr("Build System", "Category for build system isses listened under 'Build Issues'")); + tr("Build System", "Category for build system isses listed under 'Issues'")); } BuildManager::~BuildManager() diff --git a/src/plugins/projectexplorer/ioutputparser.cpp b/src/plugins/projectexplorer/ioutputparser.cpp index 5c5dc8ce18c..982a8ecb9ea 100644 --- a/src/plugins/projectexplorer/ioutputparser.cpp +++ b/src/plugins/projectexplorer/ioutputparser.cpp @@ -38,7 +38,7 @@ /*! \class ProjectExplorer::IOutputParser - \brief Interface for an output parser that emit build issues (tasks). + \brief Interface for an output parser that emit issues (tasks). \sa ProjectExplorer::Task */ diff --git a/src/plugins/projectexplorer/taskwindow.h b/src/plugins/projectexplorer/taskwindow.h index 9e0f05b3af4..ff8297ab1dd 100644 --- a/src/plugins/projectexplorer/taskwindow.h +++ b/src/plugins/projectexplorer/taskwindow.h @@ -48,7 +48,7 @@ class Task; namespace Internal { class TaskWindowPrivate; -// Show build issues (warnings or errors) and open the editor on click. +// Show issues (warnings or errors) and open the editor on click. class TaskWindow : public Core::IOutputPane { Q_OBJECT diff --git a/src/plugins/qt4projectmanager/makestep.cpp b/src/plugins/qt4projectmanager/makestep.cpp index e0369b3070c..30edf113c08 100644 --- a/src/plugins/qt4projectmanager/makestep.cpp +++ b/src/plugins/qt4projectmanager/makestep.cpp @@ -243,7 +243,7 @@ void MakeStep::run(QFutureInterface<bool> & fi) canContinue = false; } if (!canContinue) { - emit addOutput(tr("Configuration is faulty. Check the Build Issues view for details."), BuildStep::MessageOutput); + emit addOutput(tr("Configuration is faulty. Check the Issues view for details."), BuildStep::MessageOutput); fi.reportResult(false); return; } diff --git a/src/plugins/qt4projectmanager/qmakestep.cpp b/src/plugins/qt4projectmanager/qmakestep.cpp index 99187607f9d..548eb886026 100644 --- a/src/plugins/qt4projectmanager/qmakestep.cpp +++ b/src/plugins/qt4projectmanager/qmakestep.cpp @@ -309,7 +309,7 @@ void QMakeStep::run(QFutureInterface<bool> &fi) canContinue = false; } if (!canContinue) { - emit addOutput(tr("Configuration is faulty, please check the Build Issues view for details."), BuildStep::MessageOutput); + emit addOutput(tr("Configuration is faulty, please check the Issues view for details."), BuildStep::MessageOutput); fi.reportResult(false); return; } diff --git a/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp b/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp index 308fd1476b5..d3aebeb3bbb 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp @@ -266,7 +266,7 @@ void S60CreatePackageStep::handleWarnAboutPatching() const QString text = tr("%1<p><em>These changes were not part of your build system</em> but are required to " "make sure the <em>self-signed</em> package can be installed successfully on a device.</p>" - "<p>Check the Build Issues pane for more details on the modifications made.</p>" + "<p>Check the Issues pane for more details on the modifications made.</p>" "<p>Please see the <a href=\"%2\">documentation</a> for other signing options which " "remove the need for this patching.</p>").arg(changedText, url); m_patchWarningDialog->setWindowTitle(title); diff --git a/src/plugins/tasklist/TaskList.pluginspec.in b/src/plugins/tasklist/TaskList.pluginspec.in index bc04bf529ba..07f683f835f 100644 --- a/src/plugins/tasklist/TaskList.pluginspec.in +++ b/src/plugins/tasklist/TaskList.pluginspec.in @@ -10,7 +10,7 @@ GNU Lesser General Public License Usage Alternatively, this plugin may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation. Please review the following information to ensure the GNU Lesser General Public License version 2.1 requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. </license> - <description>Use .tasks-files to populate the build issues view.</description> + <description>Use .tasks-files to populate the Issues view.</description> <url>http://qt.nokia.com</url> <dependencyList> <dependency name=\"Core\" version=\"$$QTCREATOR_VERSION\"/> diff --git a/src/plugins/tasklist/tasklistplugin.cpp b/src/plugins/tasklist/tasklistplugin.cpp index 16dd987b58a..de64b2b9e7c 100644 --- a/src/plugins/tasklist/tasklistplugin.cpp +++ b/src/plugins/tasklist/tasklistplugin.cpp @@ -198,7 +198,7 @@ bool TaskListPlugin::initialize(const QStringList &arguments, QString *errorMess ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); d->hub = pm->getObject<ProjectExplorer::TaskHub>(); - //: Category under which tasklist tasks are listed in build issues view + //: Category under which tasklist tasks are listed in Issues view d->hub->addCategory(QLatin1String(Constants::TASKLISTTASK_ID), tr("My Tasks")); Core::ICore *core = Core::ICore::instance(); diff --git a/src/plugins/valgrind/memcheckerrorview.cpp b/src/plugins/valgrind/memcheckerrorview.cpp index daf6fdcb95f..9a0a6d462f8 100644 --- a/src/plugins/valgrind/memcheckerrorview.cpp +++ b/src/plugins/valgrind/memcheckerrorview.cpp @@ -361,7 +361,7 @@ void MemcheckErrorDelegate::paint(QPainter *painter, const QStyleOptionViewItem } } - // Separator lines (like build issues pane) + // Separator lines (like Issues pane) painter->setPen(QColor::fromRgb(150,150,150)); painter->drawLine(0, opt.rect.bottom(), opt.rect.right(), opt.rect.bottom()); -- GitLab