summaryrefslogtreecommitdiffstats
path: root/src/charts/barchart/bar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/charts/barchart/bar.cpp')
-rw-r--r--src/charts/barchart/bar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charts/barchart/bar.cpp b/src/charts/barchart/bar.cpp
index f6b9fc90..ffac7c43 100644
--- a/src/charts/barchart/bar.cpp
+++ b/src/charts/barchart/bar.cpp
@@ -67,7 +67,7 @@ void Bar::mousePressEvent(QGraphicsSceneMouseEvent *event)
void Bar::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
{
- Q_UNUSED(event)
+ Q_UNUSED(event);
m_hovering = true;
emit hovered(true, m_index, m_barset);
@@ -75,7 +75,7 @@ void Bar::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
void Bar::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
- Q_UNUSED(event)
+ Q_UNUSED(event);
m_hovering = false;
emit hovered(false, m_index, m_barset);
}