diff options
author | Alessandro Portale <alessandro.portale@qt.io> | 2022-10-06 17:53:35 +0200 |
---|---|---|
committer | Alessandro Portale <alessandro.portale@qt.io> | 2022-10-07 10:24:32 +0000 |
commit | 5c65115271a8674328afc6f3fc9f9846c056d0d1 (patch) | |
tree | 37c1ebe147cae714cd2fa647e277ef9cd2a12853 /src/plugins/android/androidrunner.cpp | |
parent | 8741ce6afcaf041d60cce553a8c929fed6ec3faf (diff) | |
download | qt-creator-5c65115271a8674328afc6f3fc9f9846c056d0d1.tar.gz |
Android: Convert to using Tr::tr
Change-Id: Ie9110093101b0f49808b4da7b13ac3f47c3bb994
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/android/androidrunner.cpp')
-rw-r--r-- | src/plugins/android/androidrunner.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/android/androidrunner.cpp b/src/plugins/android/androidrunner.cpp index 5325bd33a3..d0b8c38998 100644 --- a/src/plugins/android/androidrunner.cpp +++ b/src/plugins/android/androidrunner.cpp @@ -2,8 +2,6 @@ // Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 -#include "androidrunner.h" - #include "androidavdmanager.h" #include "androidconfigurations.h" #include "androidconstants.h" @@ -11,7 +9,9 @@ #include "androiddevice.h" #include "androidmanager.h" #include "androidrunconfiguration.h" +#include "androidrunner.h" #include "androidrunnerworker.h" +#include "androidtr.h" #include <coreplugin/messagemanager.h> #include <projectexplorer/projectexplorer.h> @@ -107,7 +107,7 @@ void AndroidRunner::stop() { if (m_checkAVDTimer.isActive()) { m_checkAVDTimer.stop(); - appendMessage("\n\n" + tr("\"%1\" terminated.").arg(m_packageName), + appendMessage("\n\n" + Tr::tr("\"%1\" terminated.").arg(m_packageName), Utils::NormalMessageFormat); return; } |