Skip to content

Commit 8634557

Browse files
Fix calls to handleExtendedKeyEvent().
Dropped the last argument in the calls since handleExtendedKeyEvent() no longer has a `tryShortcutOverride` parameter.
1 parent 75822a6 commit 8634557

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/platforms/xcb/qxcbkeyboard.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ void QXcbKeyboard::handleKeyEvent(xcb_window_t sourceWindow, QEvent::Type type,
10541054
QWindowSystemInterface::handleExtendedKeyEvent(
10551055
window, time, preKeyEventType, noModQtcode, noModModifiers,
10561056
code, noModSym, noModNativeModifiers, noModText, m_isAutoRepeat,
1057-
/*count(default)*/ 1, /*tryShortcutOverride*/ false);
1057+
/*count(default)*/ 1);
10581058
}
10591059

10601060
QWindowSystemInterface::handleExtendedKeyEvent(window, time, type, qtcode, modifiers,
@@ -1065,7 +1065,7 @@ void QXcbKeyboard::handleKeyEvent(xcb_window_t sourceWindow, QEvent::Type type,
10651065
QWindowSystemInterface::handleExtendedKeyEvent(
10661066
window, time, postKeyEventType, noModQtcode, noModModifiers,
10671067
code, noModSym, noModNativeModifiers, noModText, m_isAutoRepeat,
1068-
/*count(default)*/ 1, /*tryShortcutOverride*/ false);
1068+
/*count(default)*/ 1);
10691069
}
10701070
}
10711071
}

0 commit comments

Comments
 (0)