| 35 | } |
| 36 | |
| 37 | void EventReceiver::handleNotifyEvent(const dpf::Event &event) |
| 38 | { |
| 39 | const auto &actId = event.property("actionId").toString(); |
| 40 | auto toolId = actId.mid(0, actId.indexOf('_')); |
| 41 | BinaryToolsManager::instance()->installTool(toolId); |
| 42 | } |
| 43 | |
| 44 | void EventReceiver::handleFileSavedEvent(const dpf::Event &event) |
| 45 | { |
nothing calls this directly
no test coverage detected