diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-06-19 10:20:16 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-06-19 10:20:56 -0700 |
commit | 07a16574e9263fc2e30a7c0aec18df33d54a70dc (patch) | |
tree | f35e59a8c7528b8f9d0e1bd54b93aa1c39aec9e9 /qt-ui/downloadfromdivecomputer.h | |
parent | 0a9205276586deb0ec000bb211384e2d415eb38b (diff) | |
download | subsurface-07a16574e9263fc2e30a7c0aec18df33d54a70dc.tar.gz |
Consistently use slots / signals
We started out using Q_SLOTS and Q_SIGNALS but then changed our mind.
Let's make this consistent again.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.h')
-rw-r--r-- | qt-ui/downloadfromdivecomputer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/downloadfromdivecomputer.h b/qt-ui/downloadfromdivecomputer.h index de80c4028..444c03e81 100644 --- a/qt-ui/downloadfromdivecomputer.h +++ b/qt-ui/downloadfromdivecomputer.h @@ -27,7 +27,7 @@ public: InterfaceThread(QObject *parent, device_data_t *data) ; virtual void run(); -Q_SIGNALS: +signals: void updateInterface(int value); private: device_data_t *data; |