Added missing tr()s

Change-Id: Ic4b558956764a141e470c24613c0572beeee4615
Reviewed-on: http://codereview.qt.nokia.com/2128
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
Robert Loehning
2011-07-25 20:52:07 +02:00
committed by Robert Löhning
parent 02aee9bdb0
commit cdbd2344ee

View File

@@ -119,7 +119,7 @@ void BaseFileFind::findAll(const QString &txt, Find::FindFlags findFlags)
} }
Core::FutureProgress *progress = Core::FutureProgress *progress =
Core::ICore::instance()->progressManager()->addTask(m_watcher.future(), Core::ICore::instance()->progressManager()->addTask(m_watcher.future(),
"Search", tr("Search"),
Constants::TASK_SEARCH); Constants::TASK_SEARCH);
progress->setWidget(createProgressWidget()); progress->setWidget(createProgressWidget());
connect(progress, SIGNAL(clicked()), m_resultWindow, SLOT(popup())); connect(progress, SIGNAL(clicked()), m_resultWindow, SLOT(popup()));
@@ -147,7 +147,7 @@ void BaseFileFind::replaceAll(const QString &txt, Find::FindFlags findFlags)
} }
Core::FutureProgress *progress = Core::FutureProgress *progress =
Core::ICore::instance()->progressManager()->addTask(m_watcher.future(), Core::ICore::instance()->progressManager()->addTask(m_watcher.future(),
"Search", tr("Search"),
Constants::TASK_SEARCH); Constants::TASK_SEARCH);
progress->setWidget(createProgressWidget()); progress->setWidget(createProgressWidget());
connect(progress, SIGNAL(clicked()), m_resultWindow, SLOT(popup())); connect(progress, SIGNAL(clicked()), m_resultWindow, SLOT(popup()));