| 30 | } |
| 31 | |
| 32 | void NavPage::LoadThemeStyleSheet(Theme::ThemeMode theme) |
| 33 | { |
| 34 | QFile style_file(getThemeFiles(theme)); |
| 35 | if (style_file.open(QIODevice::ReadOnly | QIODevice::Text)) { |
| 36 | setStyleSheet(QString::fromUtf8(style_file.readAll())); |
| 37 | } |
| 38 | } |
nothing calls this directly
no outgoing calls
no test coverage detected