Drop TQT_BASE_OBJECT* defines

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/10/head
Michele Calgaro 9 months ago
parent 8cd30c0e7e
commit bb0c762438
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -455,10 +455,10 @@ void V4LRadioConfiguration::selectRadioDevice()
bool V4LRadioConfiguration::eventFilter(TQObject *o, TQEvent *e)
{
if (e->type() == TQEvent::FocusOut && TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(editRadioDevice)) {
if (e->type() == TQEvent::FocusOut && o == editRadioDevice) {
slotEditRadioDeviceChanged();
}
if (e->type() == TQEvent::MouseButtonDblClick && TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(sliderBalance)) {
if (e->type() == TQEvent::MouseButtonDblClick && o == sliderBalance) {
slotBalanceCenter();
}
return false;

Loading…
Cancel
Save