| 27 | namespace UI { |
| 28 | |
| 29 | ClickableLabel::ClickableLabel(QWidget * parent, Qt::WindowFlags f) |
| 30 | : QLabel(parent, f) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | ClickableLabel::ClickableLabel(const QString & text, QWidget * parent, Qt::WindowFlags f) |
| 35 | : QLabel(text, parent, f) |
nothing calls this directly
no outgoing calls
no test coverage detected