Files
qtPartlist/clabel.cpp
T
Herwig Birke 5d454cdcd1 .
2018-01-09 15:46:40 +01:00

18 lines
198 B
C++

#include "clabel.h"
cLabel::cLabel(QWidget* parent, Qt::WindowFlags /*f*/) :
QLabel(parent)
{
}
cLabel::~cLabel()
{
}
void cLabel::mousePressEvent(QMouseEvent* /*event*/)
{
emit clicked();
}