Skip to content
Snippets Groups Projects

fixed sigabrt on android

Merged Armin Felder requested to merge fixAppCloseAndroid into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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;
}
Loading