mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-21 08:46:00 +03:00
Replace QVector with QList
Migrated last remnants of QVector to Qlist, reference https://github.com/qbittorrent/qBittorrent/pull/21016#issuecomment-2212403741 onward. PR #21407.
This commit is contained in:
parent
d8e24314ec
commit
c30a07702d
3 changed files with 4 additions and 5 deletions
|
@ -71,8 +71,8 @@
|
|||
#include <QFile>
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
#include <QVector>
|
||||
#endif
|
||||
|
||||
namespace QtLP_Private
|
||||
|
@ -105,7 +105,7 @@ namespace QtLP_Private
|
|||
|
||||
Qt::HANDLE m_writeMutex = nullptr;
|
||||
Qt::HANDLE m_readMutex = nullptr;
|
||||
QVector<Qt::HANDLE> m_readMutexes;
|
||||
QList<Qt::HANDLE> m_readMutexes;
|
||||
QString m_mutexName;
|
||||
#endif
|
||||
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
#include <QPixmap>
|
||||
#include <QSize>
|
||||
#include <QString>
|
||||
#include <QVector>
|
||||
|
||||
#include "base/path.h"
|
||||
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
|
||||
#include <algorithm>
|
||||
|
||||
#include <QList>
|
||||
#include <QObject>
|
||||
#include <QTest>
|
||||
#include <QVector>
|
||||
|
||||
#include "base/bittorrent/trackerentry.h"
|
||||
#include "base/global.h"
|
||||
|
@ -46,7 +46,7 @@ public:
|
|||
private slots:
|
||||
void testParseTrackerEntries() const
|
||||
{
|
||||
using Entries = QVector<BitTorrent::TrackerEntry>;
|
||||
using Entries = QList<BitTorrent::TrackerEntry>;
|
||||
|
||||
const auto isEqual = [](const Entries &left, const Entries &right) -> bool
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue