From 00973e63653fa9e8ac64329ae6eb7662f874e0d0 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 6 Sep 2011 06:43:52 +0200 Subject: [PATCH] * Use cached sortname instead of recalculating it over and over again. --- src/libtomahawk/playlist/treeproxymodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/playlist/treeproxymodel.cpp b/src/libtomahawk/playlist/treeproxymodel.cpp index dd91c0dfd..9f73b3b74 100644 --- a/src/libtomahawk/playlist/treeproxymodel.cpp +++ b/src/libtomahawk/playlist/treeproxymodel.cpp @@ -360,7 +360,7 @@ TreeProxyModel::textForItem( TreeModelItem* item ) const if ( !item->artist().isNull() ) { - return DatabaseImpl::sortname( item->artist()->name(), true ); + return item->artist()->sortname(); } else if ( !item->album().isNull() ) {