* @brief Toggles whether the File Transmission UI is reachable in operator mode. */
| 569 | * @brief Toggles whether the File Transmission UI is reachable in operator mode. |
| 570 | */ |
| 571 | void IO::FileTransmission::setRuntimeAccessAllowed(bool allowed) |
| 572 | { |
| 573 | if (m_runtimeAccessAllowed == allowed) |
| 574 | return; |
| 575 | |
| 576 | m_runtimeAccessAllowed = allowed; |
| 577 | Q_EMIT runtimeAccessAllowedChanged(); |
| 578 | } |
| 579 | |
| 580 | //-------------------------------------------------------------------------------------------------- |
| 581 | // Plain text transmission |
no outgoing calls
no test coverage detected