* @brief Persists the frame start delimiter to the source. */
| 388 | * @brief Persists the frame start delimiter to the source. |
| 389 | */ |
| 390 | void DataModel::FrameParserModel::setFrameStart(const QString& sequence) |
| 391 | { |
| 392 | auto src = currentSource(); |
| 393 | if (src.frameStart == sequence) |
| 394 | return; |
| 395 | |
| 396 | src.frameStart = sequence; |
| 397 | ProjectModel::instance().updateSource(m_sourceId, src); |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * @brief Persists the frame end delimiter to the source. |
nothing calls this directly
no test coverage detected