Skip to content

Commit 9898018

Browse files
author
timlinux
committedFeb 17, 2007
Fix compiler warning
git-svn-id: http://svn.osgeo.org/qgis/trunk@6616 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 2e85c73 commit 9898018

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsproject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ bool QgsProject::write()
10111011

10121012
dump_(imp_->properties_);
10131013

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.