mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 16:05:21 +01:00
qt6: Replace qAsConst() usage
This commit is contained in:
parent
da720afc7e
commit
df33637d32
2 changed files with 5 additions and 5 deletions
|
@ -921,7 +921,7 @@ bool DownloadThread::_customizeImage()
|
|||
configItems.removeAll("");
|
||||
QByteArray config = fat->readFile("config.txt");
|
||||
|
||||
for (const QByteArray& item : qAsConst(configItems))
|
||||
for (const QByteArray& item : std::as_const(configItems))
|
||||
{
|
||||
if (config.contains("#"+item)) {
|
||||
/* Uncomment existing line */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue