| 98 | } |
| 99 | |
| 100 | void LiveprogSelectionWidget::updateFromEelEditor(QString path) |
| 101 | { |
| 102 | this->setCurrentLiveprog(path); |
| 103 | |
| 104 | if (_eelParser->getPath() == path) |
| 105 | { |
| 106 | loadProperties(_eelParser->getPath()); |
| 107 | } |
| 108 | else |
| 109 | { |
| 110 | EELParser parser; |
| 111 | parser.loadFile(path); |
| 112 | |
| 113 | emit liveprogReloadRequested(); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void LiveprogSelectionWidget::updateList() |
| 118 | { |
nothing calls this directly
no test coverage detected