Skip to content

Commit

Permalink
initialize QString with empty string instead of 0 (Qt 4.7 doesn't lik…
Browse files Browse the repository at this point in the history
…e it)

git-svn-id: http://svn.osgeo.org/qgis/trunk@13213 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Mar 31, 2010
1 parent f306454 commit f27d3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgshttptransaction.cpp
Expand Up @@ -48,7 +48,7 @@ QgsHttpTransaction::QgsHttpTransaction( QString uri,
: httpresponsecontenttype( 0 ),
httpurl( uri ),
httphost( proxyHost ),
mError( 0 )
mError( "" )
{
QSettings s;
mNetworkTimeoutMsec = s.value( "/qgis/networkAndProxy/networkTimeout", "20000" ).toInt();
Expand Down

0 comments on commit f27d3b5

Please sign in to comment.