diff options
author | hjk <hjk@qt.io> | 2022-07-13 18:31:56 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2022-08-01 12:16:41 +0000 |
commit | 960e99ecb18e1d4d54057ef5c540fc1bd611e336 (patch) | |
tree | 75916e73dd723c3bb26faf6c65393911f2bb2efa /src/plugins/autotest/testcodeparser.cpp | |
parent | ce7a76107514f4cf90f9040fdc549c7398b0e565 (diff) | |
download | qt-creator-960e99ecb18e1d4d54057ef5c540fc1bd611e336.tar.gz |
Autotest: Convert to Tr::tr
Change-Id: Ifd4b6ace78d02804ec3b3c1d60c5418081cad6c4
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/autotest/testcodeparser.cpp')
-rw-r--r-- | src/plugins/autotest/testcodeparser.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/autotest/testcodeparser.cpp b/src/plugins/autotest/testcodeparser.cpp index 7d0a77d839..dfed2f6703 100644 --- a/src/plugins/autotest/testcodeparser.cpp +++ b/src/plugins/autotest/testcodeparser.cpp @@ -26,8 +26,7 @@ #include "testcodeparser.h" #include "autotestconstants.h" -#include "testframeworkmanager.h" -#include "testsettings.h" +#include "autotesttr.h" #include "testtreemodel.h" #include <coreplugin/editormanager/editormanager.h> @@ -366,7 +365,7 @@ void TestCodeParser::scanForTests(const Utils::FilePaths &fileList, QThread::LowestPriority); m_futureWatcher.setFuture(future); if (list.size() > 5) { - Core::ProgressManager::addTask(future, tr("Scanning for Tests"), + Core::ProgressManager::addTask(future, Tr::tr("Scanning for Tests"), Autotest::Constants::TASK_PARSE); } } |