| 18 | } |
| 19 | |
| 20 | void BuilderSender::notifyBuildState(BuildState state, const BuildCommandInfo &commandInfo) |
| 21 | { |
| 22 | dpf::Event event; |
| 23 | event.setTopic(T_BUILDER); |
| 24 | event.setData(D_BUILD_STATE); |
| 25 | event.setProperty(P_STATE, static_cast<int>(state)); |
| 26 | event.setProperty(P_ORIGINCMD, QVariant::fromValue(commandInfo)); |
| 27 | dpf::EventCallProxy::instance().pubEvent(event); |
| 28 | } |
| 29 |
nothing calls this directly
no test coverage detected