Replace qSort with std::sort
parent
e6ae1d76eb
commit
b3dde018ec
|
|
@ -255,7 +255,7 @@ void SunSpecConnection::processDiscoveryResult()
|
||||||
|
|
||||||
if (m_uninitializedModels.isEmpty()) {
|
if (m_uninitializedModels.isEmpty()) {
|
||||||
// Sort the models according to their modbus start address to get the common model for each model
|
// Sort the models according to their modbus start address to get the common model for each model
|
||||||
qSort(m_models.begin(), m_models.end(), [](const SunSpecModel* a, const SunSpecModel* b) -> bool {
|
std::sort(m_models.begin(), m_models.end(), [](const SunSpecModel* a, const SunSpecModel* b) -> bool {
|
||||||
return a->modbusStartRegister() < b->modbusStartRegister();
|
return a->modbusStartRegister() < b->modbusStartRegister();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue