Refactor DownloaderManager private member variable names

This commit is contained in:
mmb L
2021-11-27 21:06:41 +08:00
committed by pajlada
parent 7131f9ed36
commit 7d350adfeb
2 changed files with 23 additions and 23 deletions
+4 -5
View File
@@ -1,7 +1,5 @@
#pragma once
#include "Application.hpp"
#include <QFile>
#include <QNetworkAccessManager>
#include <QNetworkReply>
@@ -20,9 +18,9 @@ public:
void setFile(QString fileURL, const QString &channelName);
private:
QNetworkAccessManager *manager;
QNetworkReply *reply;
QFile *file;
QNetworkAccessManager *manager_;
QNetworkReply *reply_;
QFile *file_;
private slots:
void onDownloadProgress(qint64, qint64);
@@ -33,4 +31,5 @@ private slots:
signals:
void downloadComplete();
};
} // namespace chatterino