Skip to content

Commit

Permalink
fix #934
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8760 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jul 12, 2008
1 parent b7ee1e8 commit 12726cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsproject.cpp
Expand Up @@ -270,7 +270,7 @@ QgsProject * QgsProject::theProject_;
{
previousQgsPropertyKey->removeKey( currentProperty->name() );
}
else if ( 0 == ( nextProperty = currentProperty->find( keySequence.first() ) ) )
else if ( ( nextProperty = currentProperty->find( keySequence.first() ) ) )
{
previousQgsPropertyKey = currentProperty;
currentProperty = dynamic_cast<QgsPropertyKey*>(nextProperty);
Expand Down

0 comments on commit 12726cc

Please sign in to comment.