| 407 | } |
| 408 | |
| 409 | void DatapickerImageWidget::relativeChanged(bool relative) { |
| 410 | CONDITIONAL_LOCK_RETURN; |
| 411 | |
| 412 | for (auto* image : m_imagesList) { |
| 413 | image->setRelativeFilePath(relative); |
| 414 | } |
| 415 | |
| 416 | // Load new filename |
| 417 | ui.leFileName->setText(m_image->fileName()); |
| 418 | } |
| 419 | |
| 420 | void DatapickerImageWidget::fileNameChanged() { |
| 421 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected