| 198 | } |
| 199 | |
| 200 | void LiveCapture::showEvent(QShowEvent *event) |
| 201 | { |
| 202 | if(!m_ConnectThread) |
| 203 | { |
| 204 | m_ConnectThread = new LambdaThread([this]() { this->connectionThreadEntry(); }); |
| 205 | m_ConnectThread->start(); |
| 206 | } |
| 207 | |
| 208 | on_captures_itemSelectionChanged(); |
| 209 | } |
| 210 | |
| 211 | void LiveCapture::on_captures_mouseClicked(QMouseEvent *e) |
| 212 | { |
nothing calls this directly
no test coverage detected