| 94 | } |
| 95 | |
| 96 | QWidget* CanDbHandler::createPropertyWidget() |
| 97 | { |
| 98 | auto* p = new PropertyFieldCombo(false); |
| 99 | |
| 100 | for (auto& item : _dbNames) { |
| 101 | p->addItem(item.second, item.first); |
| 102 | } |
| 103 | |
| 104 | p->sort(); |
| 105 | p->setPropText(getName()); |
| 106 | |
| 107 | return p; |
| 108 | } |
| 109 | |
| 110 | void CanDbHandler::dbDeleted(const QUuid& id) |
| 111 | { |
no test coverage detected