mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-29 19:18:42 -07:00
Declare destructor as virtual
This commit is contained in:
parent
0ca7100168
commit
1d1b49205d
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class ScanFoldersModel : public QAbstractTableModel {
|
||||||
public:
|
public:
|
||||||
enum PathStatus { Ok, DoesNotExist, CannotRead, CannotWrite, AlreadyInList };
|
enum PathStatus { Ok, DoesNotExist, CannotRead, CannotWrite, AlreadyInList };
|
||||||
static ScanFoldersModel *instance(QObject *parent = 0);
|
static ScanFoldersModel *instance(QObject *parent = 0);
|
||||||
~ScanFoldersModel();
|
virtual ~ScanFoldersModel();
|
||||||
|
|
||||||
virtual int rowCount(const QModelIndex & parent = QModelIndex()) const;
|
virtual int rowCount(const QModelIndex & parent = QModelIndex()) const;
|
||||||
virtual int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
virtual int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue