| 240 | } |
| 241 | |
| 242 | void ModuleRouterView::selectedModuleChanged(ModuleChooserUI * c, Module * m) |
| 243 | { |
| 244 | if (currentRouter != nullptr) |
| 245 | { |
| 246 | if (c == &sourceChooser) currentRouter->setSourceModule(m); |
| 247 | else if (c == &destChooser) currentRouter->setDestModule(m); |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | ModuleRouterControllerUI::ModuleRouterControllerUI(ModuleRouterController* controller) : |
| 252 | Component("Controller"), |
nothing calls this directly
no test coverage detected