* @brief Flushes queued data and closes the currently open CSV file. */
| 270 | * @brief Flushes queued data and closes the currently open CSV file. |
| 271 | */ |
| 272 | void CSV::Export::closeFile() |
| 273 | { |
| 274 | auto* worker = static_cast<ExportWorker*>(m_worker); |
| 275 | QMetaObject::invokeMethod(worker, "close", Qt::QueuedConnection); |
| 276 | } |
| 277 | |
| 278 | /** |
| 279 | * @brief Syncs cached open state from the worker and emits openChanged. |
no outgoing calls
no test coverage detected