aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profilegraphics.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-06-19 10:20:16 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-06-19 10:20:56 -0700
commit07a16574e9263fc2e30a7c0aec18df33d54a70dc (patch)
treef35e59a8c7528b8f9d0e1bd54b93aa1c39aec9e9 /qt-ui/profilegraphics.h
parent0a9205276586deb0ec000bb211384e2d415eb38b (diff)
downloadsubsurface-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/profilegraphics.h')
-rw-r--r--qt-ui/profilegraphics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/profilegraphics.h b/qt-ui/profilegraphics.h
index ccc4841cb..6a5413d4f 100644
--- a/qt-ui/profilegraphics.h
+++ b/qt-ui/profilegraphics.h
@@ -42,7 +42,7 @@ public:
void mousePressEvent(QGraphicsSceneMouseEvent* event);
void mouseReleaseEvent(QGraphicsSceneMouseEvent* event);
bool eventFilter(QObject* , QEvent* );
-public Q_SLOTS:
+public slots:
void setRect(const QRectF& rect);
private:
@@ -98,7 +98,7 @@ protected:
void wheelEvent(QWheelEvent* event);
void showEvent(QShowEvent* event);
-public Q_SLOTS:
+public slots:
void refresh();
void edit_dive_time(const QString& time);