From bb90021cd0d3b254cdb0fa93438675ac01f3f802 Mon Sep 17 00:00:00 2001 From: wonder Date: Sun, 5 Aug 2007 20:09:32 +0000 Subject: [PATCH] Fix for compilation problems in qgsproject.cpp git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7122 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/core/qgsproject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/qgsproject.cpp b/src/core/qgsproject.cpp index de303360200..da5cf53431d 100644 --- a/src/core/qgsproject.cpp +++ b/src/core/qgsproject.cpp @@ -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