| 174 | } |
| 175 | |
| 176 | void MainWindow::loadThemeStyelSheet(Theme::ThemeMode theme) |
| 177 | { |
| 178 | QFile style_file(_theme_files[theme]); |
| 179 | if (style_file.open(QIODevice::ReadOnly | QIODevice::Text)) { |
| 180 | setStyleSheet(QString::fromUtf8(style_file.readAll())); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | void MainWindow::UIWidgetInit() |
| 185 | { |
nothing calls this directly
no outgoing calls
no test coverage detected