1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 00:09:47 +01:00

* Call insert instead of insertInternal so it gets called correctly, in case it's overwritten.

This commit is contained in:
Christian Muehlhaeuser 2012-06-01 02:16:56 +02:00
parent c3570e8e53
commit 497c0f01c2

View File

@ -586,7 +586,7 @@ PlayableModel::insertInternal( const T& item, int row )
QList< T > list;
list << item;
insertInternal( list, row );
insert( list, row );
}