Navigation Menu

Skip to content

Commit

Permalink
Fix for compilation problems in qgsproject.cpp
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7122 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Aug 5, 2007
1 parent 9a70b3a commit bb90021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsproject.cpp
Expand Up @@ -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_);

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bb90021

Please sign in to comment.