| 129 | } |
| 130 | |
| 131 | void GuiFastSelect::setLetterID(int id) |
| 132 | { |
| 133 | while(id < 0) |
| 134 | id += LETTERS.length(); |
| 135 | while(id >= (int)LETTERS.length()) |
| 136 | id -= LETTERS.length(); |
| 137 | |
| 138 | mLetterID = (size_t)id; |
| 139 | } |
| 140 | |
| 141 | void GuiFastSelect::setListPos() |
| 142 | { |
nothing calls this directly
no outgoing calls
no test coverage detected