From a4367be07b48577836ccbbe3decf7d4478de50ea Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 25 Aug 2014 14:40:16 +0200 Subject: [PATCH] * Useless parentheses. --- src/tomahawk/sourcetree/SourceDelegate.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tomahawk/sourcetree/SourceDelegate.cpp b/src/tomahawk/sourcetree/SourceDelegate.cpp index 4aeb436e6..299230023 100644 --- a/src/tomahawk/sourcetree/SourceDelegate.cpp +++ b/src/tomahawk/sourcetree/SourceDelegate.cpp @@ -246,8 +246,7 @@ SourceDelegate::paintCollection( QPainter* painter, const QStyleOptionViewItem& } avatar = colItem->pixmap( iconRect.size() ); - - isPlaying = !( colItem->source()->currentTrack().isNull() ); + isPlaying = !colItem->source()->currentTrack().isNull(); desc = colItem->source()->textStatus(); if ( colItem->source().isNull() ) desc = tr( "All available tracks" );