| 208 | } |
| 209 | |
| 210 | void ControlPanelDialog::switchToKeyboardShortcutsTab() |
| 211 | { |
| 212 | // Find the "Shortcuts" tab and switch to it |
| 213 | for (int i = 0; i < tabWidget->count(); ++i) { |
| 214 | if (tabWidget->tabText(i) == tr("Shortcuts")) { |
| 215 | tabWidget->setCurrentIndex(i); |
| 216 | return; |
| 217 | } |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | void ControlPanelDialog::done(int result) |
| 222 | { |
no outgoing calls
no test coverage detected