| 408 | } |
| 409 | |
| 410 | Server * at(int index) |
| 411 | { |
| 412 | if(index < 0 || index >= rowCount()) |
| 413 | { |
| 414 | return nullptr; |
| 415 | } |
| 416 | return &m_servers[index]; |
| 417 | } |
| 418 | |
| 419 | void setName(int row, const QString & name) |
| 420 | { |
no outgoing calls
no test coverage detected