| 50 | } |
| 51 | |
| 52 | void CanRawPlayer::configChanged() |
| 53 | { |
| 54 | QString fileName = getQConfig()->property(d_ptr->_fileProperty.toStdString().c_str()).toString(); |
| 55 | |
| 56 | cds_info("File to open: '{}'", fileName.toStdString()); |
| 57 | |
| 58 | d_ptr->loadTraceFile(fileName); |
| 59 | |
| 60 | QString tick = getQConfig()->property(d_ptr->_tickProperty.toStdString().c_str()).toString(); |
| 61 | d_ptr->_tick = tick.toUInt(); |
| 62 | cds_debug("Tick set to {}", d_ptr->_tick); |
| 63 | } |
| 64 | |
| 65 | bool CanRawPlayer::mainWidgetDocked() const |
| 66 | { |
no test coverage detected