| 105 | }; |
| 106 | |
| 107 | void SpectrumPrefs::Populate(size_t windowSize) |
| 108 | { |
| 109 | PopulatePaddingChoices(windowSize); |
| 110 | |
| 111 | for (int i = 0; i < NumWindowFuncs(); i++) { |
| 112 | mTypeChoices.push_back( WindowFuncName(i) ); |
| 113 | } |
| 114 | |
| 115 | //------------------------- Main section -------------------- |
| 116 | // Now construct the GUI itself. |
| 117 | ShuttleGui S(this, eIsCreatingFromPrefs); |
| 118 | PopulateOrExchange(S); |
| 119 | // ----------------------- End of main section -------------- |
| 120 | } |
| 121 | |
| 122 | void SpectrumPrefs::PopulatePaddingChoices(size_t windowSize) |
| 123 | { |
nothing calls this directly
no test coverage detected