1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 03:40:16 +02:00

* Style fixes.

This commit is contained in:
Christian Muehlhaeuser
2013-06-05 20:46:35 +02:00
parent cac24eacd3
commit c2d9f1f441

View File

@@ -107,11 +107,11 @@ Cache::getData( const QString& identifier, const QString& key )
tLog() << Q_FUNC_INFO << "Removed stale entry:" << identifier << key;
return QVariant();
}
// tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Fetched data for" << identifier << key;
tDebug() << Q_FUNC_INFO << "Fetched data for" << identifier << key;
return data.data;
}
// tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "No such key" << key;
tDebug() << Q_FUNC_INFO << "No such key" << key;
return QVariant();
}
@@ -136,7 +136,8 @@ Cache::addClient( const QString& identifier )
foreach ( const QVariant& client, clients )
{
const QString client_identifier = client.toString();
if ( identifier == client_identifier ) return;
if ( identifier == client_identifier )
return;
}
tLog() << Q_FUNC_INFO << "adding client" << identifier;