Ubuntu Pastebin

Paste from Mirv at Fri, 17 Apr 2015 07:58:57 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
bool QCoreApplicationPrivate::notify_helper(QObject *receiver, QEvent * event)
{    
    // send to all application event filters
    if (sendThroughApplicationEventFilters(receiver, event))
        return true;
    // send to all receiver event filters
    if (sendThroughObjectEventFilters(receiver, event))
        return true;
    // deliver the event
    return receiver->event(event);
}
Download as text