1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge branch 'pr973'

This commit is contained in:
Dubslow 2015-01-05 20:28:24 -06:00
commit a0bf23f3ff
No known key found for this signature in database
GPG Key ID: 3DB8E05315C220AA

View File

@ -145,7 +145,9 @@ GroupWidget *Group::getGroupWidget()
QStringList Group::getPeerList() const
{
return peers.values();
QStringList peerNames(peers.values());
peerNames.sort(Qt::CaseInsensitive);
return peerNames;
}
void Group::setEventFlag(int f)