| 1291 | } |
| 1292 | |
| 1293 | int InputDevice::getKeyRepeatRate() |
| 1294 | { |
| 1295 | int tempKeyRepeatRate = GlobalVariables::InputDevice::DEFAULTKEYREPEATRATE; |
| 1296 | |
| 1297 | if (keyRepeatRate != 0) |
| 1298 | { |
| 1299 | tempKeyRepeatRate = keyRepeatRate; |
| 1300 | } |
| 1301 | |
| 1302 | return tempKeyRepeatRate; |
| 1303 | } |
| 1304 | |
| 1305 | void InputDevice::setProfileName(QString value) |
| 1306 | { |
nothing calls this directly
no outgoing calls
no test coverage detected