From aa8198eec380659fd3538e058b50c24b0f88743c Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sun, 1 Jul 2018 18:13:01 +0200 Subject: Code cleanup Clean up MainWindow Configuration is now a std::unique_ptr Connect downloads and request interceptor to all profiles --- lib/configuration/configuration.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/configuration/configuration.cpp b/lib/configuration/configuration.cpp index 766dfaf..648eec8 100644 --- a/lib/configuration/configuration.cpp +++ b/lib/configuration/configuration.cpp @@ -50,7 +50,6 @@ Configuration::Configuration(QObject *parent) ("config,c", po::value()->default_value(defaultUserConfigLocation()), "Set the configuration file.") ("socket,s", po::value()->default_value(defaultSocketPath()), "Local server socket") - ("session", po::value(), "Load session data from the specified path.") ("args", po::value>(), "arguments") ; @@ -59,7 +58,7 @@ Configuration::Configuration(QObject *parent) configuration_desc.add_options() ("browser.stylesheet", po::value()) - ("browser.session", po::value()) + ("browser.session", po::value(), "Load session data from the specified path.") ("browser.locale", po::value()) ("browser.translation", po::value()) -- cgit v1.2.1