From 36855f96f31dc92ebb70c9ad49c9be7f771fb320 Mon Sep 17 00:00:00 2001 From: Mikaƫl Capelle Date: Sun, 31 Jan 2021 16:08:48 +0100 Subject: Use case-insensitive data structure in plugin list. --- src/pluginlist.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/pluginlist.h') diff --git a/src/pluginlist.h b/src/pluginlist.h index e12a8798..a4310d2a 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -20,6 +20,7 @@ along with Mod Organizer. If not, see . #ifndef PLUGINLIST_H #define PLUGINLIST_H +#include #include #include "profile.h" #include "loot.h" @@ -325,9 +326,9 @@ private: QString author; QString description; bool hasIni; - std::set archives; - std::set masters; - mutable std::set masterUnset; + std::set archives; + std::set masters; + mutable std::set masterUnset; bool operator < (const ESPInfo& str) const { @@ -377,12 +378,12 @@ private: std::vector m_ESPs; mutable std::map m_LastSaveHash; - std::map m_ESPsByName; + std::map m_ESPsByName; std::vector m_ESPsByPriority; - std::map m_LockedOrder; + std::map m_LockedOrder; - std::map m_AdditionalInfo; // maps esp names to boss information + std::map m_AdditionalInfo; // maps esp names to boss information QString m_CurrentProfile; QFontMetrics m_FontMetrics; -- cgit v1.3.1