| 247 | //============================================================================= |
| 248 | |
| 249 | void ButtonMap::AddButtonTabCommands() |
| 250 | { |
| 251 | // Add all the action commands for tab completion |
| 252 | for (auto& btn : NumToName) |
| 253 | { |
| 254 | char tname[16]; |
| 255 | strcpy (&tname[1], btn.GetChars()); |
| 256 | tname[0] = '+'; |
| 257 | C_AddTabCommand (tname); |
| 258 | tname[0] = '-'; |
| 259 | C_AddTabCommand (tname); |
| 260 | } |
| 261 | } |
nothing calls this directly
no test coverage detected