diff options
| author | Brian Munro <brian.alexander.munro@gmail.com> | 2018-05-08 12:47:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-08 12:47:54 +0200 |
| commit | 0da6af17b2d6a6965849aa0effd5a1a876f447c4 (patch) | |
| tree | 306056296c7a35504e85825ec6965b5193c74b24 /src/pluginlist.h | |
| parent | bc75009169ecbf378fa90891dc8183a8cb3ef499 (diff) | |
| parent | 44111d12c181ff062d7936480fdc380e33232e0e (diff) | |
Merge pull request #336 from Modorganizer2/Develop
Release 2.1.3
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index f9173810..f6745aa8 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -194,6 +194,7 @@ public: QString getName(int index) const { return m_ESPs.at(index).m_Name; }
int getPriority(int index) const { return m_ESPs.at(index).m_Priority; }
+ QString getIndexPriority(int index) const;
bool isESPLocked(int index) const;
void lockESPIndex(int index, bool lock);
@@ -256,6 +257,11 @@ public slots: */
void managedGameChanged(MOBase::IPluginGame const *gamePlugin);
+ /**
+ * @brief Generate the plugin indexes because something was changed
+ **/
+ void generatePluginIndexes();
+
signals:
/**
@@ -277,6 +283,7 @@ private: bool m_Enabled;
bool m_ForceEnabled;
int m_Priority;
+ QString m_Index;
int m_LoadOrder;
FILETIME m_Time;
QString m_OriginName;
|
