mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix for compilation problems in qgsproject.cpp
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7122 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
9a70b3a378
commit
bb90021cd0
@ -792,7 +792,7 @@ bool QgsProject::read()
|
||||
// now get any properties
|
||||
_getProperties(*doc, imp_->properties_);
|
||||
|
||||
QgsDebugMsg(QString(imp_->properties_.count()) + " properties read");
|
||||
QgsDebugMsg(QString::number(imp_->properties_.count()) + " properties read");
|
||||
|
||||
dump_(imp_->properties_);
|
||||
|
||||
@ -852,7 +852,7 @@ bool QgsProject::read()
|
||||
|
||||
if ( ! getMapLayersResults.second.empty() )
|
||||
{
|
||||
QgsDebugMsg("there are " + QString(getMapLayersResults.second.size()) + " broken layers");
|
||||
QgsDebugMsg("there are " + QString::number(getMapLayersResults.second.size()) + " broken layers");
|
||||
}
|
||||
|
||||
// Since we could be executing this from the test harness which
|
||||
|
Loading…
x
Reference in New Issue
Block a user