blob: deaab3ccd44d79cb4516ea434f41cf491552b364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "label_with_double_click.h"
LabelWithDoubleClick::LabelWithDoubleClick(const TQString& s, TQWidget* tqparent)
: TQLabel(s, tqparent)
{}
void LabelWithDoubleClick::mouseDoubleClickEvent(TQMouseEvent*)
{
emit doubleClicked();
}
#include "label_with_double_click.moc"
|