| 73 | } |
| 74 | |
| 75 | QString themePath(UIResources::Theme theme) |
| 76 | { |
| 77 | switch (theme) { |
| 78 | case UIResources::Unknown: |
| 79 | break; |
| 80 | case UIResources::Light: |
| 81 | return QStringLiteral(":/gammaray/ui/light"); |
| 82 | case UIResources::Dark: |
| 83 | return QStringLiteral(":/gammaray/ui/dark"); |
| 84 | } |
| 85 | |
| 86 | return QString(); |
| 87 | } |
| 88 | |
| 89 | QString themePath() |
| 90 | { |
no test coverage detected