summaryrefslogtreecommitdiff
path: root/src/organizerproxy.cpp
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2019-05-03 21:32:33 -0500
committerLostDragonist <lost.dragonist@gmail.com>2019-05-03 21:32:33 -0500
commit179a73857125ee604f42b0d5c2d765183c86d2c7 (patch)
treeb9b3f9d62bd5640de839d150a53ab8ef119dab9c /src/organizerproxy.cpp
parente2b799bd6b5cfd51969fefd1dab5e5b1b7e5f81c (diff)
parent907c5468424b48774f5da2a6b5f96f26590987b0 (diff)
Merge pull request #695 from ModOrganizer2/Develop
Stage for Release 2.2.0
Diffstat (limited to 'src/organizerproxy.cpp')
-rw-r--r--src/organizerproxy.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/organizerproxy.cpp b/src/organizerproxy.cpp
index 8e0bc95b..d6996b3a 100644
--- a/src/organizerproxy.cpp
+++ b/src/organizerproxy.cpp
@@ -39,9 +39,6 @@ QString OrganizerProxy::downloadsPath() const
QString OrganizerProxy::overwritePath() const
{
- /*return QDir::fromNativeSeparators(qApp->property("dataPath").toString())
- + "/"
- + ToQString(AppConfig::overwritePath());*/
return m_Proxied->overwritePath();
}
@@ -50,6 +47,11 @@ QString OrganizerProxy::basePath() const
return m_Proxied->basePath();
}
+QString OrganizerProxy::modsPath() const
+{
+ return m_Proxied->modsPath();
+}
+
VersionInfo OrganizerProxy::appVersion() const
{
return m_Proxied->appVersion();
@@ -105,9 +107,10 @@ QString OrganizerProxy::pluginDataPath() const
return m_Proxied->pluginDataPath();
}
-HANDLE OrganizerProxy::startApplication(const QString &executable, const QStringList &args, const QString &cwd, const QString &profile)
+HANDLE OrganizerProxy::startApplication(const QString &executable, const QStringList &args, const QString &cwd,
+ const QString &profile, const QString &forcedCustomOverwrite, bool ignoreCustomOverwrite)
{
- return m_Proxied->startApplication(executable, args, cwd, profile);
+ return m_Proxied->startApplication(executable, args, cwd, profile, forcedCustomOverwrite, ignoreCustomOverwrite);
}
bool OrganizerProxy::waitForApplication(HANDLE handle, LPDWORD exitCode) const