From e7ed63656d005d46a9f87318ef98f4f4b1718ddc Mon Sep 17 00:00:00 2001 From: ymshenyu <373318510@qq.com> Date: Tue, 31 Mar 2020 10:35:30 +0800 Subject: [PATCH] Fix build --- src/ui/w_MainWindow_extra.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/w_MainWindow_extra.cpp b/src/ui/w_MainWindow_extra.cpp index 256241aa..0cca3f7b 100644 --- a/src/ui/w_MainWindow_extra.cpp +++ b/src/ui/w_MainWindow_extra.cpp @@ -63,7 +63,7 @@ void MainWindow::MWSetSystemProxy() auto httpPort = GlobalConfig.inboundConfig.useHTTP ? GlobalConfig.inboundConfig.http_port : 0; auto socksPort = GlobalConfig.inboundConfig.useSocks ? GlobalConfig.inboundConfig.socks_port : 0; // - SetSystemProxy(proxyAddress, httpPort, socksPort); + SetSystemProxy(proxyAddress, httpPort, socksPort, usePAC); hTray.showMessage("Qv2ray", tr("System proxy configured.")); } }