aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/help/searchwidget.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-09-03 15:18:37 +0200
committerhjk <hjk121@nokiamail.com>2013-09-04 14:59:06 +0200
commit98917598d3c5612402c68b731e01636dd99b8f6c (patch)
treeeef49490b1247a3b5d329692fe83c98a2adb9cd5 /src/plugins/help/searchwidget.cpp
parent1f340d44f7c9fee2ea42a960301adaf67261ad17 (diff)
ProjectManager: Use Core::Id for progress types
Change-Id: I72993fda50ad70ad2d7c2f449923ac6e34b9e737 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/help/searchwidget.cpp')
-rw-r--r--src/plugins/help/searchwidget.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/help/searchwidget.cpp b/src/plugins/help/searchwidget.cpp
index 256426e9997..d616c054c50 100644
--- a/src/plugins/help/searchwidget.cpp
+++ b/src/plugins/help/searchwidget.cpp
@@ -194,8 +194,7 @@ void SearchWidget::indexingStarted()
{
Q_ASSERT(!m_progress);
m_progress = new QFutureInterface<void>();
- Core::ProgressManager::addTask(m_progress->future(),
- tr("Indexing"), QLatin1String("Help.Indexer"));
+ Core::ProgressManager::addTask(m_progress->future(), tr("Indexing"), "Help.Indexer");
m_progress->setProgressRange(0, 2);
m_progress->setProgressValueAndText(1, tr("Indexing Documentation..."));
m_progress->reportStarted();