blob: f08c7358f7cdc914cec22a89f029fef44d2b25e2 (
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* parent)
: TQLabel(s, parent)
{}
void LabelWithDoubleClick::mouseDoubleClickEvent(TQMouseEvent*)
{
    emit doubleClicked();
}
#include "label_with_double_click.moc"
 |