Skip to content

Commit 821f888

Browse files
author
jef
committed
fix #934
git-svn-id: http://svn.osgeo.org/qgis/trunk@8760 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent f3f933d commit 821f888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsproject.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ QgsProject * QgsProject::theProject_;
270270
{
271271
previousQgsPropertyKey->removeKey( currentProperty->name() );
272272
}
273-
else if ( 0 == ( nextProperty = currentProperty->find( keySequence.first() ) ) )
273+
else if ( ( nextProperty = currentProperty->find( keySequence.first() ) ) )
274274
{
275275
previousQgsPropertyKey = currentProperty;
276276
currentProperty = dynamic_cast<QgsPropertyKey*>(nextProperty);

0 commit comments

Comments
 (0)