From 2182b2adbebee6c3fdf5f68fc417d244e4801238 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 2 Apr 2015 14:55:37 +0200 Subject: [PATCH] Change ui string to avoid confused users Change-Id: I431de718d01e454bb55216afd5d0ca792fa69677 Reviewed-by: Riitta-Leena Miettinen --- plugins/autotest/testcodeparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp index df147835a53..71e5eaff6d7 100644 --- a/plugins/autotest/testcodeparser.cpp +++ b/plugins/autotest/testcodeparser.cpp @@ -638,7 +638,7 @@ void TestCodeParser::scanForTests(const QStringList &fileList) QFuture future = QtConcurrent::run(&performParse, list, this); Core::FutureProgress *progress = Core::ProgressManager::addTask(future, isFullParse ? tr("Scanning for Tests") - : tr("Updating Tests"), + : tr("Refreshing Tests List"), Autotest::Constants::TASK_PARSE); connect(progress, &Core::FutureProgress::finished, this, &TestCodeParser::onFinished);