summaryrefslogtreecommitdiff
path: root/src/organizerproxy.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2015-05-17 14:30:14 +0200
committerTannin <devnull@localhost>2015-05-17 14:30:14 +0200
commite38592da977858149013d0c500c66975720b3e1f (patch)
treea2976269475f43c9bff2049d7075987c27f51e15 /src/organizerproxy.cpp
parent268d2ffe8b533890b408740db1a6a3730dfd8597 (diff)
extended plugin interface. Plugins can now activate/deactivate mods, install mods
suggesting a name and retrieve a list of all installed mods
Diffstat (limited to 'src/organizerproxy.cpp')
-rw-r--r--src/organizerproxy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/organizerproxy.cpp b/src/organizerproxy.cpp
index 2ce5b3ee..095cb0bb 100644
--- a/src/organizerproxy.cpp
+++ b/src/organizerproxy.cpp
@@ -125,9 +125,9 @@ void OrganizerProxy::refreshModList(bool saveChanges)
m_Proxied->refreshModList(saveChanges);
}
-IModInterface *OrganizerProxy::installMod(const QString &fileName)
+IModInterface *OrganizerProxy::installMod(const QString &fileName, const QString &nameSuggestion)
{
- return m_Proxied->installMod(fileName, QString());
+ return m_Proxied->installMod(fileName, nameSuggestion);
}
QString OrganizerProxy::resolvePath(const QString &fileName) const