| 47 | } |
| 48 | |
| 49 | void PaneManager::dismissAllPanes(Set<PaneLayer> const& paneLayers) { |
| 50 | for (auto const& paneLayer : paneLayers) { |
| 51 | for (auto const& panePair : copy(m_displayedPanes[paneLayer])) |
| 52 | dismiss(panePair.first); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | void PaneManager::dismissAllPanes() { |
| 57 | for (auto layerPair : copy(m_displayedPanes)) { |
no test coverage detected