I am using Ubuntu 13.04 and I am developing a program with this OS as target. At this Ubuntu release, the shortcuts I use for inside the program tend to be language dependent. If I recall correctly, this wasn’t an issue at previous Ubuntu releases.
For example, if I have this shortcut:
(void) new QShortcut(Qt::CTRL + Qt::Key_Q, this, SLOT(quit_program()));
it won’t work, unless the keyboard language is set to English.
How can I make the shortcuts language independent?
↧