aboutsummaryrefslogtreecommitdiff
path: root/src/commandline.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-03-20 16:49:08 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-03-20 16:49:08 +0100
commit03ff56c3be7f5eda19309a60dccb281c76d0187f (patch)
treed5918d7621aa147e8c3c3aaa1358ab7b9737aef7 /src/commandline.cpp
parentAdd pause/resume/cancel buttons to download (diff)
downloadsmolbote-03ff56c3be7f5eda19309a60dccb281c76d0187f.tar.xz
Update manpage
Diffstat (limited to 'src/commandline.cpp')
-rw-r--r--src/commandline.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/commandline.cpp b/src/commandline.cpp
index e7eec5d..2a0de69 100644
--- a/src/commandline.cpp
+++ b/src/commandline.cpp
@@ -50,7 +50,6 @@ CommandLine::CommandLine()
, versionOption(addVersionOption())
, buildOption("build", "Show build information.")
, configOption({ "c", "config" }, "Set configuration file.", "path", defaultUserConfigLocation())
- , defaultConfigOption("default-config", "Set the default configuration file.", "path", "")
, profileOption({ "p", "profile" }, "Use this profile.", "profile", "")
, socketOption("socket", "Local server socket", "name", socketPath())
, newWindowOption("in-new-window", "Open URL in new window")
@@ -59,7 +58,6 @@ CommandLine::CommandLine()
addOption(buildOption);
addOption(configOption);
- addOption(defaultConfigOption);
addOption(profileOption);
addOption(socketOption);
addOption(newWindowOption);
@@ -110,7 +108,6 @@ void CommandLine::printHelp(int exitCode)
printOption(versionOption);
printOption(buildOption);
printOption(configOption);
- printOption(defaultConfigOption);
printOption(profileOption);
printOption(socketOption);
printOption(newWindowOption);