forked from qt-creator/qt-creator
Android: Modernize
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using modernize-use-equals-default modernize-use-transparent-functors Change-Id: I6c9e567edf16cf436c0e0c1239b40f74574a1096 Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
This commit is contained in:
committed by
Vikas Pachdha
parent
02a759d4f5
commit
be5c228e5b
@@ -61,10 +61,7 @@ AndroidDevice::AndroidDevice()
|
||||
setQmlsceneCommand(activityPath);
|
||||
}
|
||||
|
||||
AndroidDevice::AndroidDevice(const AndroidDevice &other)
|
||||
: IDevice(other)
|
||||
{ }
|
||||
|
||||
AndroidDevice::AndroidDevice(const AndroidDevice &other) = default;
|
||||
|
||||
IDevice::DeviceInfo AndroidDevice::deviceInformation() const
|
||||
{
|
||||
@@ -78,7 +75,7 @@ QString AndroidDevice::displayType() const
|
||||
|
||||
IDeviceWidget *AndroidDevice::createWidget()
|
||||
{
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
QList<Core::Id> AndroidDevice::actionIds() const
|
||||
|
Reference in New Issue
Block a user