| 130 | } |
| 131 | |
| 132 | void AudioRouter::GetModuleDimensions(float& width, float& height) |
| 133 | { |
| 134 | float w, h; |
| 135 | mRouteSelector->GetDimensions(w, h); |
| 136 | width = 10 + w; |
| 137 | height = 8 + h; |
| 138 | } |
| 139 | |
| 140 | void AudioRouter::RadioButtonUpdated(RadioButton* radio, int oldVal, double time) |
| 141 | { |
nothing calls this directly
no test coverage detected