]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/GuiClickableLabel.cpp
Remove obsolete (and false) comment.
[lyx.git] / src / frontends / qt / GuiClickableLabel.cpp
1 // -*- C++ -*-
2 /**
3  * \file GuiClickableLabel.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * Full author contact details are available in file CREDITS.
8  */
9
10 #include "config.h"
11
12 #include "GuiClickableLabel.h"
13
14 namespace lyx {
15 namespace frontend {
16
17 GuiClickableLabel::GuiClickableLabel(QWidget * parent)
18         : QLabel(parent)
19 {}
20
21 GuiClickableLabel::~GuiClickableLabel()
22 {}
23
24 void GuiClickableLabel::mouseReleaseEvent(QMouseEvent *) {
25                 Q_EMIT clicked();
26         }
27
28 }
29 }
30
31 #include "moc_GuiClickableLabel.cpp"