Fix warning

This commit is contained in:
Martin Gräßlin 2013-09-09 04:51:54 +02:00
parent 57be7899c0
commit 8a5972b8cb

View file

@ -855,7 +855,7 @@ bool TabBox::handleMouseEvent(xcb_button_press_event_t *e)
if (effects && static_cast<EffectsHandlerImpl*>(effects)->checkInputWindowEvent(e)) if (effects && static_cast<EffectsHandlerImpl*>(effects)->checkInputWindowEvent(e))
return true; return true;
} }
if (e->response_type & ~0x80 == XCB_BUTTON_PRESS) { if ((e->response_type & ~0x80) == XCB_BUTTON_PRESS) {
// press outside Tabbox? // press outside Tabbox?
QPoint pos(e->root_x, e->root_y); QPoint pos(e->root_x, e->root_y);