I want one of my menu actions to have multiple shortcuts (like "Del" and "Backspace"), so the user can press any of those keys to activate the action.

Using myAction->setShortcut( QKeySequence( "Del, Backspace" ) ) doesn't give a desired result - I have to press those keys in combination instead of pressing any of them.

Is it possible to assign multiple shortcuts for one action with QT?. If possible - how?

Thanks in advance