1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

Unbreak clang compilation.

This commit is contained in:
Dominik Schmidt
2011-08-07 15:56:06 +02:00
parent 2c8fac1f8c
commit dd54736e76

View File

@@ -127,9 +127,9 @@ JSPFLoader::gotBody()
QVariantList tracks = pl.value( "track" ).toList(); QVariantList tracks = pl.value( "track" ).toList();
bool shownError = false; bool shownError = false;
foreach ( const QVariant& track, tracks ) foreach ( const QVariant& currentTrack, tracks )
{ {
QVariantMap tM = track.toMap(); QVariantMap tM = currentTrack.toMap();
QString artist, album, track, duration, annotation, url; QString artist, album, track, duration, annotation, url;
artist = tM.value( "creator" ).toString(); artist = tM.value( "creator" ).toString();