Skip to content

Commit b3c13e3

Browse files
author
jef
committed
initialize QString with empty string instead of 0 (Qt 4.7 doesn't like it)
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13213 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 6a7f374 commit b3c13e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgshttptransaction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ QgsHttpTransaction::QgsHttpTransaction( QString uri,
4848
: httpresponsecontenttype( 0 ),
4949
httpurl( uri ),
5050
httphost( proxyHost ),
51-
mError( 0 )
51+
mError( "" )
5252
{
5353
QSettings s;
5454
mNetworkTimeoutMsec = s.value( "/qgis/networkAndProxy/networkTimeout", "20000" ).toInt();

0 commit comments

Comments
 (0)