chore: clean up after new compiler warnings
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
parent
7e0e1ec51d
commit
cc41b039e6
25 changed files with 74 additions and 78 deletions
|
@ -45,7 +45,7 @@
|
|||
class NetAction : public Task {
|
||||
Q_OBJECT
|
||||
protected:
|
||||
explicit NetAction() : Task(){};
|
||||
explicit NetAction() : Task(){}
|
||||
|
||||
public:
|
||||
using Ptr = shared_qobject_ptr<NetAction>;
|
||||
|
@ -71,7 +71,7 @@ class NetAction : public Task {
|
|||
i++;
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
public slots:
|
||||
void startAction(shared_qobject_ptr<QNetworkAccessManager> network)
|
||||
|
@ -81,7 +81,7 @@ class NetAction : public Task {
|
|||
}
|
||||
|
||||
protected:
|
||||
void executeTask() override{};
|
||||
void executeTask() override{}
|
||||
|
||||
public:
|
||||
shared_qobject_ptr<QNetworkAccessManager> m_network;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue