We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877a491 commit e0d3f69Copy full SHA for e0d3f69
src/qt/guiutil.cpp
@@ -1088,7 +1088,7 @@ void loadStyleSheet(QWidget* widget, bool fDebugWidget)
1088
throw std::runtime_error(strprintf("%s: Invalid <os=...></os> section in file %s", __func__, file.toStdString()));
1089
}
1090
1091
- for (int i = 0; i < listMatches.size(); i += 4) {
+ for (size_t i = 0; i < listMatches.size(); i += 4) {
1092
if (!listMatches[i + 1].contains(QString::fromStdString(platformName))) {
1093
// If os is not supported for this styles
1094
// just remove the full match
0 commit comments