Fix compiler warnings.

This commit is contained in:
srcejon
2024-04-02 17:01:56 +01:00
parent 8d57e040ff
commit 20371ae8fc
3 changed files with 16 additions and 9 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ void SIDSettingsDialog::getChannels(QStringList& ids, QStringList& titles)
{
DeviceSet *deviceSet = deviceSets[deviceSetIndex];
for (unsigned int channelIndex = 0; channelIndex < deviceSet->getNumberOfChannels(); channelIndex++)
for (int channelIndex = 0; channelIndex < deviceSet->getNumberOfChannels(); channelIndex++)
{
QString title;
ChannelWebAPIUtils::getChannelSetting(deviceSetIndex, channelIndex, "title", title);