| 764 | } |
| 765 | |
| 766 | bool SimulationParametersMainWindow::checkNumZones(SimulationParameters const& parameters) |
| 767 | { |
| 768 | if (parameters.numZones == MAX_ZONES) { |
| 769 | showMessage("Error", "The maximum number of zones has been reached."); |
| 770 | return false; |
| 771 | } |
| 772 | return true; |
| 773 | } |
| 774 | |
| 775 | bool SimulationParametersMainWindow::checkNumSources(SimulationParameters const& parameters) |
| 776 | { |
nothing calls this directly
no test coverage detected