* @brief Called when the worker thread changes the file open state. */
| 361 | * @brief Called when the worker thread changes the file open state. |
| 362 | */ |
| 363 | void Console::Export::onWorkerOpenChanged() |
| 364 | { |
| 365 | auto* worker = static_cast<ExportWorker*>(m_worker); |
| 366 | m_isOpen.store(worker->isResourceOpen(), std::memory_order_relaxed); |
| 367 | Q_EMIT openChanged(); |
| 368 | } |
| 369 | #endif |
nothing calls this directly
no test coverage detected