Skip to content

Commit bb90021

Browse files
author
wonder
committed
Fix for compilation problems in qgsproject.cpp
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7122 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 9a70b3a commit bb90021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/qgsproject.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ bool QgsProject::read()
792792
// now get any properties
793793
_getProperties(*doc, imp_->properties_);
794794

795-
QgsDebugMsg(QString(imp_->properties_.count()) + " properties read");
795+
QgsDebugMsg(QString::number(imp_->properties_.count()) + " properties read");
796796

797797
dump_(imp_->properties_);
798798

@@ -852,7 +852,7 @@ bool QgsProject::read()
852852

853853
if ( ! getMapLayersResults.second.empty() )
854854
{
855-
QgsDebugMsg("there are " + QString(getMapLayersResults.second.size()) + " broken layers");
855+
QgsDebugMsg("there are " + QString::number(getMapLayersResults.second.size()) + " broken layers");
856856
}
857857

858858
// Since we could be executing this from the test harness which

0 commit comments

Comments
 (0)