Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6616 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Feb 17, 2007
1 parent d5e6e15 commit 2c15ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsproject.cpp
Expand Up @@ -1011,7 +1011,7 @@ bool QgsProject::write()

dump_(imp_->properties_);

qDebug("there are %d property scopes", imp_->properties_.count());
qDebug("there are %d property scopes", static_cast<int>(imp_->properties_.count()));

if (!imp_->properties_.isEmpty()) // only worry about properties if we
// actually have any properties
Expand Down

0 comments on commit 2c15ad5

Please sign in to comment.