diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-10-25 17:46:29 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-10-25 17:46:29 +0100 |
| commit | 551e8353e090040ee337e718cf0f1b9fe31a0423 (patch) | |
| tree | b6a31a880e10f528b4f17c7e19c1639b116278ac /src/modlistproxy.cpp | |
| parent | a216177b879bea6db659c65b0c37bbfe70ce08fd (diff) | |
Move IOrganizer::getMod() to IModList::getMod().
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 660e4b9d..8fcbdbdf 100644 --- a/src/modlistproxy.cpp +++ b/src/modlistproxy.cpp @@ -22,6 +22,11 @@ QStringList ModListProxy::allModsByProfilePriority(MOBase::IProfile* profile) co return m_Proxied->allModsByProfilePriority(profile); } +IModInterface* ModListProxy::getMod(const QString& name) const +{ + return m_Proxied->getMod(name); +} + bool ModListProxy::removeMod(MOBase::IModInterface* mod) { return m_Proxied->removeMod(mod); |
