Fix build with Qt 5

This commit is contained in:
Cameron Gutman 2023-09-03 19:42:19 -05:00
parent 519858b708
commit dec5a6370e

View file

@ -204,7 +204,7 @@ void ComputerModel::handleComputerStateChanged(NvComputer* computer)
// Insert the PC in the new location
beginInsertRows(QModelIndex(), newListIndex, newListIndex);
m_Computers.emplace(newListIndex, computer);
m_Computers.insert(newListIndex, computer);
endInsertRows();
}
else {