refactor: override / mask static make functions for ApiDownload

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2023-06-01 20:15:39 -07:00
parent 9c10965997
commit 418677ef31
11 changed files with 101 additions and 26 deletions

View File

@ -57,6 +57,8 @@ public:
return m_id;
}
void init() override {};
protected
slots:
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal) override;

View File

@ -46,6 +46,7 @@ public:
static Ptr make(ScreenShot::Ptr shot) {
return Ptr(new ImgurUpload(shot));
}
void init() override {};
protected
slots: