summaryrefslogtreecommitdiff
path: root/src/modlistproxy.cpp
diff options
context:
space:
mode:
authorMikaël Capelle <capelle.mikael@gmail.com>2021-01-02 15:08:29 +0100
committerMikaël Capelle <capelle.mikael@gmail.com>2021-01-02 15:08:29 +0100
commit3a92ff96ba5068aff0417219eed8cf759b55b9f7 (patch)
tree156453698a6e772f051478ff117a3924493f3cc1 /src/modlistproxy.cpp
parent386cfc511a0d843851d78eeb2bce8d1da725d0d0 (diff)
Remove setName and remove from mod interface.
Diffstat (limited to 'src/modlistproxy.cpp')
-rw-r--r--src/modlistproxy.cpp5
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);