summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/clickablelabel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/clickablelabel.h b/ui/clickablelabel.h
index df261494..3e09c045 100644
--- a/ui/clickablelabel.h
+++ b/ui/clickablelabel.h
@@ -9,9 +9,9 @@ class BINARYNINJAUIAPI ClickableLabel: public QLabel
public:
ClickableLabel(QWidget* parent = nullptr, const QString& name = ""): QLabel(parent) { setText(name); }
-signals:
+Q_SIGNALS:
void clicked();
protected:
- void mouseReleaseEvent(QMouseEvent* event) override { if (event->button() == Qt::LeftButton) emit clicked(); }
+ void mouseReleaseEvent(QMouseEvent* event) override { if (event->button() == Qt::LeftButton) Q_EMIT clicked(); }
};