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

@@ -26,7 +26,7 @@
#include <QObject>
#include <QPair>
#include <QMap>
#include <QHash>
#include <QPalette>
#include <QString>
@@ -65,7 +65,7 @@ class StyleSheetLoader : public QObject {
void ResetCounters();
private:
QMap<QWidget*, StyleSheetData> styledata_;
QHash<QWidget*, StyleSheetData> styledata_;
QTimer *timer_reset_counter_;
};