Change some uses of QMap to QHash

This commit is contained in:
Jonas Kvinge
2021-07-12 08:28:52 +02:00
parent f02741284c
commit 4251bee3ca
14 changed files with 28 additions and 22 deletions

View File

@@ -25,7 +25,7 @@
#include <QtGlobal>
#include <QObject>
#include <QMap>
#include <QHash>
class QNetworkReply;
class QTimerEvent;
@@ -47,7 +47,7 @@ class NetworkTimeouts : public QObject {
private:
int timeout_msec_;
QMap<QNetworkReply*, int> timers_;
QHash<QNetworkReply*, int> timers_;
};