| 311 | } |
| 312 | |
| 313 | void RemoteManager::connectToApp(RDTreeWidgetItem *node) |
| 314 | { |
| 315 | if(node) |
| 316 | { |
| 317 | RemoteConnect connect = getRemoteConnect(node); |
| 318 | |
| 319 | if(connect.ident > 0) |
| 320 | { |
| 321 | LiveCapture *live = |
| 322 | new LiveCapture(m_Ctx, connect.host, connect.friendly, connect.ident, m_Main, m_Main); |
| 323 | m_Main->ShowLiveCapture(live); |
| 324 | accept(); |
| 325 | } |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | void RemoteManager::updateConnectButton() |
| 330 | { |
nothing calls this directly
no test coverage detected