diff options
| author | Tannin <devnull@localhost> | 2015-05-17 14:30:14 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2015-05-17 14:30:14 +0200 |
| commit | e38592da977858149013d0c500c66975720b3e1f (patch) | |
| tree | a2976269475f43c9bff2049d7075987c27f51e15 /src/organizerproxy.cpp | |
| parent | 268d2ffe8b533890b408740db1a6a3730dfd8597 (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.cpp | 4 |
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
|
