1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-18 11:52:08 +01:00

Added missing Q_OBJECT macro

This commit is contained in:
Martin Tůma 2017-09-24 20:13:13 +02:00
parent d3fbbecb2d
commit 7ab13ec8e5
6 changed files with 12 additions and 0 deletions

View File

@ -5,6 +5,8 @@
class CadenceGraphItem : public GraphItem
{
Q_OBJECT
public:
CadenceGraphItem(const Graph &graph, QGraphicsItem *parent = 0);

View File

@ -5,6 +5,8 @@
class ElevationGraphItem : public GraphItem
{
Q_OBJECT
public:
ElevationGraphItem(const Graph &graph, QGraphicsItem *parent = 0);

View File

@ -5,6 +5,8 @@
class HeartRateGraphItem : public GraphItem
{
Q_OBJECT
public:
HeartRateGraphItem(const Graph &graph, QGraphicsItem *parent = 0);

View File

@ -5,6 +5,8 @@
class PowerGraphItem : public GraphItem
{
Q_OBJECT
public:
PowerGraphItem(const Graph &graph, QGraphicsItem *parent = 0);

View File

@ -5,6 +5,8 @@
class SpeedGraphItem : public GraphItem
{
Q_OBJECT
public:
SpeedGraphItem(const Graph &graph, qreal movingTime,
QGraphicsItem *parent = 0);

View File

@ -5,6 +5,8 @@
class TemperatureGraphItem : public GraphItem
{
Q_OBJECT
public:
TemperatureGraphItem(const Graph &graph, QGraphicsItem *parent = 0);