| 42 | } |
| 43 | |
| 44 | QStringList FlowEditor::availableTaskTypes() const |
| 45 | { |
| 46 | if (m_flowManager) |
| 47 | return m_flowManager->getAvailableTasksTypes(); |
| 48 | else { |
| 49 | return {"No flow manager"}; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | QStringList FlowEditor::availableFlows() const |
| 54 | { |
nothing calls this directly
no test coverage detected