| 924 | } |
| 925 | |
| 926 | void LaunchConfigPagesContainer::setLaunchConfiguration( KDevelop::LaunchConfiguration* l ) |
| 927 | { |
| 928 | config = l; |
| 929 | for (LaunchConfigurationPage* p : std::as_const(pages)) { |
| 930 | p->loadFromConfiguration( config->config(), config->project() ); |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | void LaunchConfigPagesContainer::save() |
| 935 | { |
no test coverage detected