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

@@ -40,7 +40,7 @@ class AndroidDeviceInfo
{
public:
QString serialNumber;
QString avdname;
QString avdName;
QStringList cpuAbi;
int sdk = -1;
IDevice::DeviceState state = IDevice::DeviceDisconnected;
@@ -49,7 +49,7 @@ public:
static QStringList adbSelector(const QString &serialNumber);
bool isValid() const { return !serialNumber.isEmpty() || !avdname.isEmpty(); }
bool isValid() const { return !serialNumber.isEmpty() || !avdName.isEmpty(); }
bool operator<(const AndroidDeviceInfo &other) const;
bool operator==(const AndroidDeviceInfo &other) const; // should be = default with C++20
bool operator!=(const AndroidDeviceInfo &other) const { return !(*this == other); }