diff options
Diffstat (limited to 'src/modlistproxy.cpp')
| -rw-r--r-- | src/modlistproxy.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modlistproxy.cpp b/src/modlistproxy.cpp index 6165fc3f..cae5b1f7 100644 --- a/src/modlistproxy.cpp +++ b/src/modlistproxy.cpp @@ -55,6 +55,11 @@ bool ModListProxy::removeMod(MOBase::IModInterface* mod) return m_Proxied->removeMod(mod); } +MOBase::IModInterface* ModListProxy::renameMod(MOBase::IModInterface* mod, const QString& name) +{ + return m_Proxied->renameMod(mod, name); +} + IModList::ModStates ModListProxy::state(const QString& name) const { return m_Proxied->state(name); |
