| 260 | } |
| 261 | |
| 262 | void MainWindow::allowRemoteTriggering(const AllowRemoteTriggeringEvent& event) |
| 263 | { |
| 264 | // We do not want to trigger check changed event. |
| 265 | this->allowRemoteTriggeringAction->blockSignals(true); |
| 266 | this->allowRemoteTriggeringAction->setChecked(event.getEnabled()); |
| 267 | this->allowRemoteTriggeringAction->blockSignals(false); |
| 268 | } |
| 269 | |
| 270 | void MainWindow::compactView(const CompactViewEvent& event) |
| 271 | { |
nothing calls this directly
no test coverage detected