| 66 | } |
| 67 | |
| 68 | QString QmitkStyleManager::GetIconColor() |
| 69 | { |
| 70 | const auto styleSheet = qApp->styleSheet(); |
| 71 | const auto fallback = QStringLiteral("#000000"); |
| 72 | |
| 73 | return !styleSheet.isEmpty() |
| 74 | ? ParseColor(styleSheet, QStringLiteral("iconColor"), fallback) |
| 75 | : fallback; |
| 76 | } |
| 77 | |
| 78 | QString QmitkStyleManager::GetIconAccentColor() |
| 79 | { |
nothing calls this directly
no test coverage detected