| 119 | QStyle *gammarayDefaultStyle() |
| 120 | { |
| 121 | foreach (const QString &styleName, |
| 122 | QGuiApplicationPrivate::platform_theme->themeHint(QPlatformTheme::StyleNames).toStringList()) { |
| 123 | if (auto style = QStyleFactory::create(styleName)) { |
| 124 | return style; |
| 125 | } |
| 126 | } |
| 127 | return nullptr; |
| 128 | } |
| 129 | } |
no outgoing calls
no test coverage detected