mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 15:37:26 -06:00
Remove excessive usage of pointer
This commit is contained in:
@@ -29,11 +29,10 @@
|
||||
#ifndef FILELOGGER_H
|
||||
#define FILELOGGER_H
|
||||
|
||||
#include <QFile>
|
||||
#include <QObject>
|
||||
#include <QTimer>
|
||||
|
||||
class QFile;
|
||||
|
||||
namespace Log
|
||||
{
|
||||
struct Msg;
|
||||
@@ -71,7 +70,7 @@ private:
|
||||
QString m_path;
|
||||
bool m_backup;
|
||||
int m_maxSize;
|
||||
QFile *m_logFile;
|
||||
QFile m_logFile;
|
||||
QTimer m_flusher;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user