Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #3000
git-svn-id: http://svn.osgeo.org/qgis/trunk@14227 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Sep 14, 2010
1 parent b104eca commit b420878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectordataprovider.cpp
Expand Up @@ -414,7 +414,7 @@ void QgsVectorDataProvider::fillMinMaxCache()
{
mCacheMinValues[*it] = value;
}
if ( mCacheMaxValues[*it].isNull() || value > mCacheMinValues[*it].toString() )
if ( mCacheMaxValues[*it].isNull() || value > mCacheMaxValues[*it].toString() )
{
mCacheMaxValues[*it] = value;
}
Expand Down

0 comments on commit b420878

Please sign in to comment.