Skip to content

Commit

Permalink
Fixed typo returning max attribute value in SQLA provider.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@15046 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
ddehaan committed Jan 14, 2011
1 parent 4dbb516 commit b09f49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/sqlanywhere/qgssqlanywhereprovider.h
Expand Up @@ -144,7 +144,7 @@ class QgsSqlAnywhereProvider: public QgsVectorDataProvider

/** Returns the maximum value of an attribute
* @param index the index of the attribute */
QVariant maximumValue( int index ) { return minmaxValue( index, "MIN" ); }
QVariant maximumValue( int index ) { return minmaxValue( index, "MAX" ); }

/** Return the unique values of an attribute
* @param index the index of the attribute
Expand Down

0 comments on commit b09f49d

Please sign in to comment.