UI: Fix compilation warning re signed/unsigned

master
Chris Angelico 2020-02-24 12:11:27 +11:00
parent 704d2c9e11
commit 2036c06b91
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ void OBSBasicAdvAudio::SetIconsVisible(bool visible)
QLabel *headerLabel = qobject_cast<QLabel *>(item->widget());
visible ? headerLabel->show() : headerLabel->hide();
for (int i = 0; i < controls.size(); i++) {
for (size_t i = 0; i < controls.size(); i++) {
controls[i]->SetIconVisible(visible);
}
}