summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2021-02-22 21:08:42 -0600
committerBe <be@mixxx.org>2021-02-22 21:08:42 -0600
commit715acbd53a4eb7f0e820a0266d7ca302d3433d7c (patch)
treec462b6f43108fb65ea37816a018751bceffe32d3 /src
parenta211e75dd63d61776065ca2297f3d5810f423701 (diff)
CmdlineArgs: remove unused pluginPath argument
This is obsolete since SoundSource plugins were removed.
Diffstat (limited to 'src')
-rw-r--r--src/util/cmdlineargs.cpp7
-rw-r--r--src/util/cmdlineargs.h2
2 files changed, 0 insertions, 9 deletions
diff --git a/src/util/cmdlineargs.cpp b/src/util/cmdlineargs.cpp
index 1259926519..4b1f530681 100644
--- a/src/util/cmdlineargs.cpp
+++ b/src/util/cmdlineargs.cpp
@@ -52,9 +52,6 @@ bool CmdlineArgs::Parse(int &argc, char **argv) {
} else if (argv[i] == QString("--resourcePath") && i+1 < argc) {
m_resourcePath = QString::fromLocal8Bit(argv[i+1]);
i++;
- } else if (argv[i] == QString("--pluginPath") && i+1 < argc) {
- m_pluginPath = QString::fromLocal8Bit(argv[i+1]);
- i++;
} else if (argv[i] == QString("--timelinePath") && i+1 < argc) {
m_timelinePath = QString::fromLocal8Bit(argv[i+1]);
i++;
@@ -132,10 +129,6 @@ void CmdlineArgs::printUsage() {
for its resource files such as MIDI mappings,\n\
overriding the default installation location.\n\
\n\
---pluginPath PATH Top-level directory where Mixxx should look\n\
- for sound source plugins in addition to default\n\
- locations.\n\
-\n\
--settingsPath PATH Top-level directory where Mixxx should look\n\
for settings. Default is:\n", stdout);
fprintf(stdout, "\
diff --git a/src/util/cmdlineargs.h b/src/util/cmdlineargs.h
index 22ce3099db..1aa1003498 100644
--- a/src/util/cmdlineargs.h
+++ b/src/util/cmdlineargs.h
@@ -39,7 +39,6 @@ class CmdlineArgs final {
m_settingsPath = newSettingsPath;
}
const QString& getResourcePath() const { return m_resourcePath; }
- const QString& getPluginPath() const { return m_pluginPath; }
const QString& getTimelinePath() const { return m_timelinePath; }
private:
@@ -55,6 +54,5 @@ class CmdlineArgs final {
QString m_locale;
QString m_settingsPath;
QString m_resourcePath;
- QString m_pluginPath;
QString m_timelinePath;
};