Reintroduce Heartrate Zone Summary on RideSummary Window

The refactoring of the summary window to use metricDB and the
introduction of HR zone config in options removed (temporarily)
the table on ride summary.

This patch re-introduces it.
This commit is contained in:
Mark Liversedge
2011-04-09 14:08:28 +01:00
parent 08110333c7
commit 8698aaa76b
4 changed files with 27 additions and 4 deletions

View File

@@ -146,13 +146,11 @@ int RideItem::numZones()
return (zone_range >= 0) ? zones->numZones(zone_range) : 0;
}
#if 0
int RideItem::numHrZones()
{
int hr_zone_range = hrZoneRange();
return (hr_zone_range >= 0) ? hrZones->numZones(hr_zone_range) : 0;
}
#endif
#if 0