diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-08 19:38:56 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-08 19:38:56 -0400 |
| commit | 0ea975248b8cdb8319d3a366616f8d852726f83c (patch) | |
| tree | 5295263ea3488f409c017cc50434f498ebd115a2 /src/modinfo.h | |
| parent | 52db7e8c7ddd39609a8eecbf44fa15ec6369f843 (diff) | |
remove separators and backups from mod list in the edit executables dialog
Diffstat (limited to 'src/modinfo.h')
| -rw-r--r-- | src/modinfo.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/modinfo.h b/src/modinfo.h index e395f45b..30a115c7 100644 --- a/src/modinfo.h +++ b/src/modinfo.h @@ -229,6 +229,18 @@ public: */ static ModInfo::Ptr createFromPlugin(const QString &modName, const QString &espName, const QStringList &bsaNames, ModInfo::EModType modType, MOShared::DirectoryEntry **directoryStructure, PluginContainer *pluginContainer); + // whether the given name is used for separators + // + static bool isSeparatorName(const QString& name); + + // whether the given name is used for backups + // + static bool isBackupName(const QString& name); + + // whether the given name is used for regular mods + // + static bool isRegularName(const QString& name); + /** * @brief retieve a name for one of the CONTENT_ enums * @param contentType the content value |
