Skip to content

Commit e0d3f69

Browse files
Apply suggestions from code review
Co-authored-by: PastaPastaPasta <6443210+PastaPastaPasta@users.noreply.github.com>
1 parent 877a491 commit e0d3f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/guiutil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ void loadStyleSheet(QWidget* widget, bool fDebugWidget)
10881088
throw std::runtime_error(strprintf("%s: Invalid <os=...></os> section in file %s", __func__, file.toStdString()));
10891089
}
10901090

1091-
for (int i = 0; i < listMatches.size(); i += 4) {
1091+
for (size_t i = 0; i < listMatches.size(); i += 4) {
10921092
if (!listMatches[i + 1].contains(QString::fromStdString(platformName))) {
10931093
// If os is not supported for this styles
10941094
// just remove the full match

0 commit comments

Comments
 (0)