| 23 | } |
| 24 | |
| 25 | void SendEvents::gengrateWorkspace(const QString &projectPath) |
| 26 | { |
| 27 | dpf::Event event; |
| 28 | event.setTopic(T_FILEBROWSER); |
| 29 | event.setData(D_ITEM_MENU_BUILD); |
| 30 | event.setProperty(P_PROJECTPATH, projectPath); |
| 31 | qInfo() << __FUNCTION__ << event; |
| 32 | dpf::EventCallProxy::instance().pubEvent(event); |
| 33 | } |
nothing calls this directly
no test coverage detected