1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-24 07:34:22 +02:00

Yet another refactoring

This commit is contained in:
2016-02-19 21:42:54 +01:00
parent 59d8b3cc77
commit ba4ac9fe51
12 changed files with 39 additions and 39 deletions

View File

@ -8,7 +8,7 @@
class Track
{
public:
Track(const QVector<TrackPoint> &data) : _data(data) {}
Track(const QVector<Trackpoint> &data) : _data(data) {}
void elevationGraph(QVector<QPointF> &graph) const;
void speedGraph(QVector<QPointF> &graph) const;
@ -18,7 +18,7 @@ public:
QDateTime date() const;
private:
const QVector<TrackPoint> &_data;
const QVector<Trackpoint> &_data;
};
#endif // TRACK_H