mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-07-18 19:24:42 -04:00
UI: Fix compilation warning re signed/unsigned
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user