From 78a05894f5528ffe31cf527d92b6877e541e980c Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 30 May 2016 03:10:29 +0000 Subject: [PATCH] =?UTF-8?q?window/linux=20=EC=97=90=20=EB=94=B0=EB=9D=BC?= =?UTF-8?q?=20process=20=ED=98=B8=EC=B6=9C=20=EB=B0=A9=EB=B2=95=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://192.168.0.12/source@271 8346c931-da38-4b9b-9d4c-e48b93cbd075 --- ProxyUI/widget.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ProxyUI/widget.cpp b/ProxyUI/widget.cpp index 23585a0..6c7378c 100644 --- a/ProxyUI/widget.cpp +++ b/ProxyUI/widget.cpp @@ -213,7 +213,11 @@ void Widget::update() InsertCrawlingLog("Crawling Timer Stop"); } InsertCrawlingLog(m_slIpUrl.at(m_index)); +#if defined(Q_OS_WIN32) v_pro.start("ProxyProcess",QStringList() << m_slIpUrl.at(m_index) << p_lineProxyFile->text()); +#else + v_pro.start("./ProxyProcess",QStringList() << m_slIpUrl.at(m_index) << p_lineProxyFile->text()); +#endif //p_labelStatus->setText("Updating"); }