Fix warning
This commit is contained in:
parent
ba5061a215
commit
942aa2a170
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ class BluetoothDownloadJob : public QObject
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit BluetoothDownloadJob(ConnectionMultiplexer *connection, const QVariantMap &transferInfo, QObject *parent = 0);
|
||||
explicit BluetoothDownloadJob(ConnectionMultiplexer *connection, const QVariantMap &transferInfo, QObject *parent = nullptr);
|
||||
|
||||
QSharedPointer<QIODevice> payload() const;
|
||||
void start();
|
||||
|
|
|
@ -23,7 +23,7 @@ class BluetoothUploadJob : public QObject
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit BluetoothUploadJob(const QSharedPointer<QIODevice> &data, ConnectionMultiplexer *connection, QObject *parent = 0);
|
||||
explicit BluetoothUploadJob(const QSharedPointer<QIODevice> &data, ConnectionMultiplexer *connection, QObject *parent = nullptr);
|
||||
|
||||
QVariantMap transferInfo() const;
|
||||
void start();
|
||||
|
|
Loading…
Reference in a new issue