| 69 | } |
| 70 | |
| 71 | void setWindowColours(WindowColour slot, AdvancedColour colour) |
| 72 | { |
| 73 | const auto index = static_cast<size_t>(slot); |
| 74 | assert(index < _windowColours.size()); |
| 75 | _windowColours[index] = colour; |
| 76 | } |
| 77 | |
| 78 | AdvancedColour getWindowColour(WindowColour slot) |
| 79 | { |
no test coverage detected