Fix sorting of numeric host lists (P25/NXDN)
This commit is contained in:
parent
6d73e2eb4d
commit
84b7d459d3
1 changed files with 8 additions and 2 deletions
|
@ -902,7 +902,10 @@ void DroidStar::process_p25_hosts()
|
||||||
while (i != m_hostmap.constEnd()) {
|
while (i != m_hostmap.constEnd()) {
|
||||||
m_hostsmodel.append(i.key());
|
m_hostsmodel.append(i.key());
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
QMap<int, QString> m;
|
||||||
|
for (auto s : m_hostsmodel) m[s.toInt()] = s;
|
||||||
|
m_hostsmodel = QStringList(m.values());
|
||||||
}
|
}
|
||||||
f.close();
|
f.close();
|
||||||
}
|
}
|
||||||
|
@ -943,7 +946,10 @@ void DroidStar::process_nxdn_hosts()
|
||||||
while (i != m_hostmap.constEnd()) {
|
while (i != m_hostmap.constEnd()) {
|
||||||
m_hostsmodel.append(i.key());
|
m_hostsmodel.append(i.key());
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
QMap<int, QString> m;
|
||||||
|
for (auto s : m_hostsmodel) m[s.toInt()] = s;
|
||||||
|
m_hostsmodel = QStringList(m.values());
|
||||||
}
|
}
|
||||||
f.close();
|
f.close();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue