1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

Remove unnecessary variable crows

This commit is contained in:
Uwe L. Korn 2014-12-21 11:46:34 +01:00
parent b8823401f8
commit 60ce34e206

@ -106,12 +106,8 @@ RecentlyPlayedModel::onSourceAdded( const Tomahawk::source_ptr& source )
connect( source.data(), SIGNAL( playbackFinished( Tomahawk::track_ptr, Tomahawk::PlaybackLog ) ),
SLOT( onPlaybackFinished( Tomahawk::track_ptr, Tomahawk::PlaybackLog ) ), Qt::UniqueConnection );
QPair< int, int > crows;
int c = rowCount( QModelIndex() );
crows.first = c;
crows.second = c;
emit beginInsertRows( QModelIndex(), crows.first, crows.second );
emit beginInsertRows( QModelIndex(), c, c );
PlayableItem* item = new PlayableItem( source, rootItem() );
item->index = createIndex( rootItem()->children.count() - 1, 0, item );