diff options
| author | Al12rs <gabriel.cortesi@outlook.com> | 2018-07-17 14:37:50 +0200 |
|---|---|---|
| committer | Al12rs <gabriel.cortesi@outlook.com> | 2018-07-17 14:37:50 +0200 |
| commit | 35bbe0001efa9aac48c56503643b98ec03c080e7 (patch) | |
| tree | 2f9cd065f4368a7893680fa22c9ed5be10d4e7f6 /src/pluginlist.h | |
| parent | 75478f68a12c89af790ba2aae127d4834c6d44a5 (diff) | |
Added a flag to the plugin list indicating if a certain plugin has one or more archives attached.
Changed the tooltip to list the loaded archives.
Fixed tool tip to have titles for subsections.
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index f6745aa8..583c7272 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -277,7 +277,7 @@ private: struct ESPInfo {
- ESPInfo(const QString &name, bool enabled, const QString &originName, const QString &fullPath, bool hasIni);
+ ESPInfo(const QString &name, bool enabled, const QString &originName, const QString &fullPath, bool hasIni, std::set<QString> archives);
QString m_Name;
QString m_FullPath;
bool m_Enabled;
@@ -294,6 +294,7 @@ private: QString m_Author;
QString m_Description;
bool m_HasIni;
+ std::set<QString> m_Archives;
std::set<QString> m_Masters;
mutable std::set<QString> m_MasterUnset;
bool operator < (const ESPInfo& str) const
|
