1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 01:39:42 +01:00

Use the enum value, to avoid out-of-order documentation mixup

This commit is contained in:
Jeff Mitchell 2011-07-20 18:24:32 -04:00
parent f5e39c216e
commit 86ac66a258

View File

@ -353,7 +353,7 @@ TomahawkSettings::setProxyPassword( const QString& password )
int
TomahawkSettings::proxyType() const
{
return value( "network/proxy/type", 0 ).toInt();
return value( "network/proxy/type", QNetworkProxy::NoProxy ).toInt();
}