| 76 | } |
| 77 | |
| 78 | QString QmitkStyleManager::GetIconAccentColor() |
| 79 | { |
| 80 | const auto styleSheet = qApp->styleSheet(); |
| 81 | const auto fallback = QStringLiteral("#ffffff"); |
| 82 | |
| 83 | return !styleSheet.isEmpty() |
| 84 | ? ParseColor(styleSheet, QStringLiteral("iconAccentColor"), fallback) |
| 85 | : fallback; |
| 86 | } |
nothing calls this directly
no test coverage detected