| 173 | } |
| 174 | |
| 175 | QString MainWindow::stringForShortCut(int id) const { |
| 176 | return (id < 10) ? QString("%1").arg((id + 1) % 10) : |
| 177 | (id < 20) ? QString("Ctrl+%1").arg((id + 1) % 10) : |
| 178 | (id < 30) ? QString("Alt+%1").arg((id + 1) % 10) : |
| 179 | (id < 40) ? QString("Ctrl+Alt+%1").arg((id + 1) % 10) : |
| 180 | QString(); |
| 181 | } |
| 182 | |
| 183 | void MainWindow::loadConfigLabels() { |
| 184 | _isLoadingNewLabels = true; |
nothing calls this directly
no outgoing calls
no test coverage detected