aboutsummaryrefslogtreecommitdiffstats
path: root/core/downloadfromdcthread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/downloadfromdcthread.cpp')
-rw-r--r--core/downloadfromdcthread.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp
index 2517b7fb6..8a3365842 100644
--- a/core/downloadfromdcthread.cpp
+++ b/core/downloadfromdcthread.cpp
@@ -324,9 +324,10 @@ void DCDeviceData::setDevName(const QString &devName)
}
#if defined(Q_OS_ANDROID)
-void DCDeviceData::setUsbDevice(void *device)
+void DCDeviceData::setUsbDevice(const android_usb_serial_device_descriptor &usbDescriptor)
{
- data.androidUsbDeviceDescriptor = device;
+ androidUsbDescriptor = usbDescriptor;
+ data.androidUsbDeviceDescriptor = &androidUsbDescriptor;
}
#endif