| 232 | } |
| 233 | |
| 234 | rdcstr RemoteHost::VersionMismatchError() const |
| 235 | { |
| 236 | QMutexLocker autolock(&m_data->mutex); |
| 237 | if(m_data->m_versionError.empty()) |
| 238 | return "Version Mismatch"; |
| 239 | return m_data->m_versionError; |
| 240 | } |
| 241 | |
| 242 | rdcstr RemoteHost::FriendlyName() const |
| 243 | { |
no test coverage detected