| 246 | } |
| 247 | |
| 248 | bool VoteMenuHandler::GetClientVoteChoice(int client, unsigned int *pItem) |
| 249 | { |
| 250 | if (!IsClientInVotePool(client) |
| 251 | || m_ClientVotes[client] == VOTE_PENDING) |
| 252 | { |
| 253 | return false; |
| 254 | } |
| 255 | |
| 256 | *pItem = m_ClientVotes[client]; |
| 257 | |
| 258 | return true; |
| 259 | } |
| 260 | |
| 261 | bool VoteMenuHandler::RedrawToClient(int client, bool revotes) |
| 262 | { |
nothing calls this directly
no test coverage detected