diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-24 02:52:54 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-11-06 07:42:57 -0500 |
| commit | b60f2aa786cf748e1839f4320604030863279032 (patch) | |
| tree | 541ce924e085cfad988ec0c9ce444bb92c2e084f /src/organizerproxy.cpp | |
| parent | e43500eaf5d40bcd28ba5a820cdbc754cfb47e40 (diff) | |
renamed startApplication() to runExecutableOrExecutableFile()
Diffstat (limited to 'src/organizerproxy.cpp')
| -rw-r--r-- | src/organizerproxy.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/organizerproxy.cpp b/src/organizerproxy.cpp index d6996b3a..2ea1761a 100644 --- a/src/organizerproxy.cpp +++ b/src/organizerproxy.cpp @@ -107,10 +107,14 @@ QString OrganizerProxy::pluginDataPath() const return m_Proxied->pluginDataPath();
}
-HANDLE OrganizerProxy::startApplication(const QString &executable, const QStringList &args, const QString &cwd,
- const QString &profile, const QString &forcedCustomOverwrite, bool ignoreCustomOverwrite)
+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, forcedCustomOverwrite, ignoreCustomOverwrite);
+ return m_Proxied->runExecutableOrExecutableFile(
+ executable, args, cwd, profile,
+ forcedCustomOverwrite, ignoreCustomOverwrite);
}
bool OrganizerProxy::waitForApplication(HANDLE handle, LPDWORD exitCode) const
|
