Skip to content
Snippets Groups Projects
Commit c2230830 authored by Armin Felder's avatar Armin Felder
Browse files

Update usermodel.cpp

parent 8a7bd282
No related branches found
No related tags found
1 merge request!36fixed sigabrt on android
This commit is part of merge request !36. Comments created here will be created in the context of that merge request.
......@@ -30,7 +30,7 @@ UserModel::UserModel( QObject *parent ): QAbstractListModel( parent )
int UserModel::rowCount( const QModelIndex &parent ) const
{
Q_UNUSED( parent );
int count = userMap.values( current ).toSet().count();
int count = userMap.values( current ).count();
qDebug() << "count of current channel users" << count;
return count;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment