From 497c0f01c234bb951475d6e861dd1519db0d1f76 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 1 Jun 2012 02:16:56 +0200 Subject: [PATCH] * Call insert instead of insertInternal so it gets called correctly, in case it's overwritten. --- src/libtomahawk/playlist/PlayableModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/playlist/PlayableModel.cpp b/src/libtomahawk/playlist/PlayableModel.cpp index 3581ae92d..d2b7e3f97 100644 --- a/src/libtomahawk/playlist/PlayableModel.cpp +++ b/src/libtomahawk/playlist/PlayableModel.cpp @@ -586,7 +586,7 @@ PlayableModel::insertInternal( const T& item, int row ) QList< T > list; list << item; - insertInternal( list, row ); + insert( list, row ); }