[QGIS Commit] r13213 - trunk/qgis/src/core
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Wed Mar 31 12:41:42 EDT 2010
Author: jef
Date: 2010-03-31 12:41:41 -0400 (Wed, 31 Mar 2010)
New Revision: 13213
Modified:
trunk/qgis/src/core/qgshttptransaction.cpp
Log:
initialize QString with empty string instead of 0 (Qt 4.7 doesn't like it)
Modified: trunk/qgis/src/core/qgshttptransaction.cpp
===================================================================
--- trunk/qgis/src/core/qgshttptransaction.cpp 2010-03-31 15:53:40 UTC (rev 13212)
+++ trunk/qgis/src/core/qgshttptransaction.cpp 2010-03-31 16:41:41 UTC (rev 13213)
@@ -48,7 +48,7 @@
: httpresponsecontenttype( 0 ),
httpurl( uri ),
httphost( proxyHost ),
- mError( 0 )
+ mError( "" )
{
QSettings s;
mNetworkTimeoutMsec = s.value( "/qgis/networkAndProxy/networkTimeout", "20000" ).toInt();
More information about the QGIS-commit
mailing list