summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-04-02 14:55:37 +0200
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-04-08 13:41:51 +0300
commit2182b2adbebee6c3fdf5f68fc417d244e4801238 (patch)
tree8f012c5618390eedecfdffbea4d2116c683bbecd
parent3f506a2a36af1c62d370f8d2ba9c4e492be15432 (diff)
downloadqt-creator-2182b2adbebee6c3fdf5f68fc417d244e4801238.tar.gz
Change ui string to avoid confused users
Change-Id: I431de718d01e454bb55216afd5d0ca792fa69677 Reviewed-by: Riitta-Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
-rw-r--r--plugins/autotest/testcodeparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index df147835a5..71e5eaff6d 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -638,7 +638,7 @@ void TestCodeParser::scanForTests(const QStringList &fileList)
QFuture<void> 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);