We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e050e2b commit 4ee8f44Copy full SHA for 4ee8f44
src/core/qgsproject.cpp
@@ -792,7 +792,7 @@ bool QgsProject::read()
792
// now get any properties
793
_getProperties(*doc, imp_->properties_);
794
795
- QgsDebugMsg(QString(imp_->properties_.count()) + " properties read");
+ QgsDebugMsg(QString::number(imp_->properties_.count()) + " properties read");
796
797
dump_(imp_->properties_);
798
@@ -852,7 +852,7 @@ bool QgsProject::read()
852
853
if ( ! getMapLayersResults.second.empty() )
854
{
855
- QgsDebugMsg("there are " + QString(getMapLayersResults.second.size()) + " broken layers");
+ QgsDebugMsg("there are " + QString::number(getMapLayersResults.second.size()) + " broken layers");
856
}
857
858
// Since we could be executing this from the test harness which
0 commit comments