Misc fixes by Julian Simioni.. Thanks.

This commit is contained in:
Justin Knotzke
2009-08-21 20:22:59 -04:00
parent 3f7938f344
commit 5a453fb210
4 changed files with 32 additions and 50 deletions

View File

@@ -219,19 +219,3 @@ void RideFile::appendPoint(double secs, double cad, double hr, double km,
dataPresent.watts |= (watts != 0);
dataPresent.interval |= (interval != 0);
}
void
RideFile::appendPoint(double secs, double cad, double hr, double km,
double kph, double nm, double watts, int interval)
{
dataPoints_.append(new RideFilePoint(secs, cad, hr, km, kph,
nm, watts, interval,0.0));
dataPresent.secs |= (secs != 0);
dataPresent.cad |= (cad != 0);
dataPresent.hr |= (hr != 0);
dataPresent.km |= (km != 0);
dataPresent.kph |= (kph != 0);
dataPresent.nm |= (nm != 0);
dataPresent.watts |= (watts != 0);
dataPresent.interval |= (interval != 0);
}