Android: rename avdname to avdName in AndroidDeviceInfo

Change-Id: I9f4743b0d9f953f1fa407acfea41345571cb9998
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Assam Boudjelthia
2021-10-13 21:18:13 +03:00
parent e5ce9e9e76
commit 851171f772
10 changed files with 23 additions and 23 deletions

View File

@@ -322,7 +322,7 @@ QString AndroidAvdManager::findAvd(const QString &avdName) const
foreach (AndroidDeviceInfo device, devices) {
if (device.type != ProjectExplorer::IDevice::Emulator)
continue;
if (device.avdname == avdName)
if (device.avdName == avdName)
return device.serialNumber;
}
return QString();