Skip to content

Commit

Permalink
fix #1024
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8310 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 2, 2008
1 parent a3e7727 commit 942d3cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsdistancearea.cpp
Expand Up @@ -648,7 +648,7 @@ QString QgsDistanceArea::textUnit(double value, int decimals, QGis::units u, boo
unitLabel = QObject::tr(" km2");
value = value / 1000000.0;
}
else if (fabs(value) > 1000.0)
else if (fabs(value) > 10000.0)
{
unitLabel = QObject::tr(" ha");
value = value / 10000.0;
Expand Down

0 comments on commit 942d3cc

Please sign in to comment.