Consider the following code fragment:
Qt Code:
  1. QNetworkProxyFactory::setUseSystemConfiguration(true);
  2.  
  3. QNetworkAccessManager manager;
  4. QNetworkProxy::ProxyType type = manager.proxy().type(); //DefaultProxy
  5. QNetworkProxyFactory *factory = manager.proxyFactory(); //0x0
To copy to clipboard, switch view to plain text mode 
I'd expect QNetworkAccessManager to obey the internal global QNetworkProxyFactory created by QNetworkProxyFactory::setUseSystemConfiguration(true), but it doesn't.
(Observed on Windows - don't know if that matters.)

Is this a bug or a feature? If a feature, what might be the reasoning?