| 316 | } |
| 317 | |
| 318 | QString StringViewToQString(const std::string_view str) |
| 319 | { |
| 320 | return str.empty() ? QString() : QString::fromUtf8(str.data(), str.size()); |
| 321 | } |
| 322 | |
| 323 | void SetWidgetFontForInheritedSetting(QWidget* widget, bool inherited) |
| 324 | { |
no test coverage detected