From 86ac66a2587404dc744782dfc54cb08b153783cf Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Wed, 20 Jul 2011 18:24:32 -0400 Subject: [PATCH] Use the enum value, to avoid out-of-order documentation mixup --- src/libtomahawk/tomahawksettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/tomahawksettings.cpp b/src/libtomahawk/tomahawksettings.cpp index b03665144..40fa85624 100644 --- a/src/libtomahawk/tomahawksettings.cpp +++ b/src/libtomahawk/tomahawksettings.cpp @@ -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(); }