Fix qsizetype

This commit is contained in:
Adam Honse
2025-07-02 00:17:32 -05:00
parent 064bae7b87
commit 47bb1c0b37

View File

@@ -222,7 +222,7 @@ QListWidgetItem* ManualDevicesSettingsPage::addEntry(BaseManualDeviceEntry* entr
| Validation mostly affects the "Save" button state |
\*---------------------------------------------------------*/
QList<QLineEdit*> textEditList = entry->findChildren<QLineEdit*>(QString(), Qt::FindChildrenRecursively);
for(std::size_t i = 0; i < textEditList.size(); i++)
for(qsizetype i = 0; i < textEditList.size(); i++)
{
connect(textEditList[i], &QLineEdit::textChanged, this, &ManualDevicesSettingsPage::onTextEditChanged);
}