From 351aaf56f640c318e957cd6d4792380b7efad57a Mon Sep 17 00:00:00 2001 From: Luc Guyot Date: Thu, 21 Mar 2024 11:22:30 +0100 Subject: [PATCH] Restores inline instruction that was accidentally lost --- src/gui/customlabel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/customlabel.h b/src/gui/customlabel.h index bc890eb2b..7d731ab0e 100644 --- a/src/gui/customlabel.h +++ b/src/gui/customlabel.h @@ -30,7 +30,7 @@ class CustomLabel : public QLabel { public: explicit CustomLabel(QWidget *parent = nullptr); - void setToolTip(const QString &text) { _toolTipText = text; } + inline void setToolTip(const QString &text) { _toolTipText = text; } private: QString _toolTipText;