diff options
| author | Thomas Tanner <trtanner@btinternet.com> | 2015-11-25 14:23:58 +0000 |
|---|---|---|
| committer | Thomas Tanner <trtanner@btinternet.com> | 2015-11-25 14:23:58 +0000 |
| commit | b9b12ca765d1703ac2e3852746e7acc3a20949a9 (patch) | |
| tree | a0465afad62c89e36f49fda78653ce2d91010612 /src/modinfo.h | |
| parent | 78b686b2bc507a5606bc7c673745b02346bc667a (diff) | |
Bunch of const correctness changes. There shouldn't be any update of plugin games once MO has started
Diffstat (limited to 'src/modinfo.h')
| -rw-r--r-- | src/modinfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modinfo.h b/src/modinfo.h index 6de4123b..f6484707 100644 --- a/src/modinfo.h +++ b/src/modinfo.h @@ -107,7 +107,10 @@ public: /**
* @brief read the mod directory and Mod ModInfo objects for all subdirectories
**/
- static void updateFromDisc(const QString &modDirectory, MOShared::DirectoryEntry **directoryStructure, bool displayForeign, const MOBase::IPluginGame *game);
+ static void updateFromDisc(const QString &modDirectory,
+ MOShared::DirectoryEntry **directoryStructure,
+ bool displayForeign,
+ MOBase::IPluginGame const *game);
static void clear() { s_Collection.clear(); s_ModsByName.clear(); s_ModsByModID.clear(); }
|
