Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
albertvaka committed Sep 9, 2024
1 parent ba5061a commit 942aa2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/backends/bluetooth/bluetoothdownloadjob.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion core/backends/bluetooth/bluetoothuploadjob.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 942aa2a

Please sign in to comment.