diff options
| author | Tannin <devnull@localhost> | 2013-12-14 13:23:13 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-12-14 13:23:13 +0100 |
| commit | 14ac234daf1680b0685f6bea3e74aa09dfcf38ef (patch) | |
| tree | 643c053d77c53c138f7c325bec695bfdc1c044a1 /src/pluginlist.h | |
| parent | 22b8eb7c5a5d3a0d7033bbb57b2d248fc7c0fe11 (diff) | |
- plugin list now highlights plugins with attached ini files
- bugfix: opening nexus through the globe icon used the nmm.nexusmods.com url
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index 2f1a3f5f..64c914df 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -131,7 +131,6 @@ public: */ int enabledCount() const; - QString getName(int index) const { return m_ESPs.at(index).m_Name; } int getPriority(int index) const { return m_ESPs.at(index).m_Priority; } bool isESPLocked(int index) const; @@ -193,7 +192,7 @@ private: struct ESPInfo { - ESPInfo(const QString &name, bool enabled, FILETIME time, const QString &originName, const QString &fullPath); + ESPInfo(const QString &name, bool enabled, FILETIME time, const QString &originName, const QString &fullPath, bool hasIni); QString m_Name; QString m_FullPath; bool m_Enabled; @@ -205,6 +204,7 @@ private: QString m_OriginName; bool m_IsMaster; bool m_IsDummy; + bool m_HasIni; std::set<QString> m_Masters; mutable std::set<QString> m_MasterUnset; }; |
