On a mac laptop, spanish keyboard layout, the ? character requires pressing Shift. So in order to activate the help with the keyboard one must press cmd+shift+?. I am having problems to detect that key combination, the QKeyEvent::key() returns Qt::Key_Apostrophe (the character corresponding to that key without shift modifier)

And
Qt Code:
  1. e->matches(QKeySequence::HelpContents)
To copy to clipboard, switch view to plain text mode 
Doesn't work either (does not detect the keypress)

What would be the correct way to intercept a platform indepentent help request with the keyboard? or at least on Mac to intercept cmd+? on such keyboard layouts?

Thanks!