diff options
author | Jarek Kobus <[email protected]> | 2023-05-03 16:00:22 +0200 |
---|---|---|
committer | Jarek Kobus <[email protected]> | 2023-05-04 05:52:16 +0000 |
commit | 470c95c94be58905bc3202d3b58175add5f576fa (patch) | |
tree | 992c0eea5e7e88f4599a533d2bcbf4bfac472cd9 /src/plugins/android/androiddevice.h | |
parent | e5051bbfdef896ece974a949a392de7337284bf0 (diff) |
Utils: Rename QtcProcess -> Process
Task-number: QTCREATORBUG-29102
Change-Id: Ibc264f9db6a32206e4097766ee3f7d0b35225a5c
Reviewed-by: Qt CI Bot <[email protected]>
Reviewed-by: <[email protected]>
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/android/androiddevice.h')
-rw-r--r-- | src/plugins/android/androiddevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/android/androiddevice.h b/src/plugins/android/androiddevice.h index 551d39b934d..cf8046cfa95 100644 --- a/src/plugins/android/androiddevice.h +++ b/src/plugins/android/androiddevice.h @@ -15,7 +15,7 @@ #include <QFileSystemWatcher> #include <QSettings> -namespace Utils { class QtcProcess; } +namespace Utils { class Process; } namespace Android { namespace Internal { @@ -108,7 +108,7 @@ private: QFutureWatcher<AndroidDeviceInfoList> m_avdsFutureWatcher; QFutureWatcher<QPair<ProjectExplorer::IDevice::ConstPtr, bool>> m_removeAvdFutureWatcher; QFileSystemWatcher m_avdFileSystemWatcher; - std::unique_ptr<Utils::QtcProcess> m_adbDeviceWatcherProcess; + std::unique_ptr<Utils::Process> m_adbDeviceWatcherProcess; AndroidConfig &m_androidConfig; AndroidAvdManager m_avdManager; |