Skip to content

Commit

Permalink
fix comparision
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@10068 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jan 31, 2009
1 parent db414ba commit 719e805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsattributetable.cpp
Expand Up @@ -264,7 +264,7 @@ int QgsAttributeTable::compareItems( QString s1, QString s2, bool ascending, boo
return 1;
}
}
else if ( compareValue = 0 )
else if ( compareValue == 0 )
{
return 0;
}
Expand Down

0 comments on commit 719e805

Please sign in to comment.