| 39 | namespace { |
| 40 | |
| 41 | inline |
| 42 | Qt::CheckState toCheckState(const QVariant& value) |
| 43 | { |
| 44 | return value.toBool() ? Qt::Checked : Qt::Unchecked; |
| 45 | } |
| 46 | |
| 47 | QColor paletteColor(OpenOrienteering::MapView const& view, QPalette::ColorRole role) { |
| 48 | auto const group = view.areAllTemplatesHidden() ? QPalette::Disabled : QPalette::Active; |
no outgoing calls
no test coverage detected