Fix warning
This commit is contained in:
parent
57be7899c0
commit
8a5972b8cb
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue