1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-10-04 09:31:41 +02:00

* Style cleanup.

This commit is contained in:
Christian Muehlhaeuser
2012-05-20 15:43:53 +02:00
parent 5a8b32691e
commit 717b04623f
2 changed files with 6 additions and 1 deletions

View File

@@ -183,7 +183,7 @@ Result::toVariant() const
QString
Result::toString() const
{
return QString( "Result(%1 %2\t%3 - %4 %5" ).arg( id() ).arg( score() ).arg( artist().isNull() ? QString() : artist()->name() ).arg( track() ).arg( url() );
return QString( "Result(%1) %2\t%3 - %4 %5" ).arg( id() ).arg( score() ).arg( artist().isNull() ? QString() : artist()->name() ).arg( track() ).arg( url() );
}