| 65 | } |
| 66 | |
| 67 | bool Theme::isValidThemeMode(const int value) |
| 68 | { |
| 69 | switch (value) { |
| 70 | case Theme::Light: |
| 71 | case Theme::Dark: |
| 72 | return true; |
| 73 | default: |
| 74 | return false; |
| 75 | } |
| 76 | } |
nothing calls this directly
no outgoing calls
no test coverage detected