| 426 | } |
| 427 | |
| 428 | void RemoteModelServer::sendAddRemoveMessage(Protocol::MessageType type, const QModelIndex &parent, |
| 429 | int start, int end) |
| 430 | { |
| 431 | if (!isConnected()) |
| 432 | return; |
| 433 | Message msg(m_myAddress, type); |
| 434 | msg << Protocol::fromQModelIndex(parent) << start << end; |
| 435 | sendMessage(msg); |
| 436 | } |
| 437 | |
| 438 | void RemoteModelServer::sendMoveMessage(Protocol::MessageType type, |
| 439 | const Protocol::ModelIndex &sourceParent, int sourceStart, |
nothing calls this directly
no test coverage detected