Crash on Windows, add more output; refs #40

master
Marc Wäckerlin 10 years ago
parent 5619a9688b
commit 0bc4881e75
  1. 4
      src/proxyface/qtproxy.hxx

@ -28,13 +28,15 @@ namespace proxy {
virtual List proxies(const std::string& url) {
qDebug()<<"************ QTPROXY ********************";
qDebug()<<"************ QTPROXY ********************";
List res;
qDebug()<<"Query System Proxies for "<<QString::fromStdString(url)
<<" ...";
QList<QNetworkProxy> proxies
(QNetworkProxyFactory::systemProxyForQuery
(QNetworkProxyQuery(QUrl(QString::fromStdString(url)))));
qDebug()<<"Found "<<proxies.size()<<" System Proxies ...";
for (QList<QNetworkProxy>::const_iterator proxy(proxies.begin());
proxy!=proxies.end(); ++proxy) {

Loading…
Cancel
Save