hopefully fix Qt6

This commit is contained in:
Arisotura 2021-11-19 17:03:45 +01:00
parent 1472a0ec4b
commit 593eb7c81c
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ bool FirmwareSettingsDialog::verifyMAC()
int pos = 0;
for (int i = 0; i < maclen;)
{
QCharRef c = mac[i];
QChar c = mac[i];
bool good = false;
if (c >= '0' && c <= '9') good = true;
else if (c >= 'a' && c <= 'f') good = true;