| 123 | } |
| 124 | |
| 125 | void ToolMenuHeaderWidget::handleStream(bool isSuccess) |
| 126 | { |
| 127 | if(m_ledState != STREAM_RUNNING && m_ledState != IDLE) { |
| 128 | return; |
| 129 | } |
| 130 | m_ledState = STREAM_RUNNING; |
| 131 | m_ledBtn->setLedState(isSuccess); |
| 132 | m_ledBtn->ledOn(); |
| 133 | m_timer->start(); |
| 134 | } |
| 135 | |
| 136 | void ToolMenuHeaderWidget::onTimeout() |
| 137 | { |
nothing calls this directly
no test coverage detected