diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-10-21 22:43:45 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-10-21 22:43:45 -0500 |
| commit | eaeb48d745d74857d47da5d66d82fea005a16555 (patch) | |
| tree | 16c9c9452d36860596006fb3eeda8dcc7eb163f1 /src/pluginlist.h | |
| parent | b16a0ab3d94fad599347098e79e4a8131de08efa (diff) | |
Correctly render the modindex for ESLs
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index aaa45bc1..e98f5c41 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -282,6 +282,10 @@ private: bool m_HasIni;
std::set<QString> m_Masters;
mutable std::set<QString> m_MasterUnset;
+ bool operator < (const ESPInfo& str) const
+ {
+ return (m_LoadOrder < str.m_LoadOrder);
+ }
};
struct AdditionalInfo {
|
