| 772 | } |
| 773 | |
| 774 | void UIBuildSettings::updateOS() { |
| 775 | mBuild.mOS.clear(); |
| 776 | auto oses = find<UIWidget>( "os_select" )->querySelectorAll( "CheckBox" ); |
| 777 | for ( const auto os : oses ) { |
| 778 | if ( os->asType<UICheckBox>()->isChecked() ) |
| 779 | mBuild.mOS.insert( os->getId() ); |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | void UIBuildSettings::setTab( UITab* tab ) { |
| 784 | if ( tab != mTab ) { |
nothing calls this directly
no test coverage detected