mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-23 01:09:42 +01:00
* Style cleanup.
This commit is contained in:
parent
5a8b32691e
commit
717b04623f
@ -39,6 +39,7 @@
|
||||
|
||||
using namespace Tomahawk;
|
||||
|
||||
|
||||
SocialAction::SocialAction() {}
|
||||
SocialAction::~SocialAction() {}
|
||||
|
||||
@ -52,11 +53,13 @@ SocialAction& SocialAction::operator=( const SocialAction& other )
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
SocialAction::SocialAction( const SocialAction& other )
|
||||
{
|
||||
*this = other;
|
||||
}
|
||||
|
||||
|
||||
PlaybackLog::PlaybackLog() {}
|
||||
PlaybackLog::~PlaybackLog() {}
|
||||
|
||||
@ -69,11 +72,13 @@ PlaybackLog& PlaybackLog::operator=( const PlaybackLog& other )
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
PlaybackLog::PlaybackLog( const PlaybackLog& other )
|
||||
{
|
||||
*this = other;
|
||||
}
|
||||
|
||||
|
||||
query_ptr
|
||||
Query::get( const QString& artist, const QString& track, const QString& album, const QID& qid, bool autoResolve )
|
||||
{
|
||||
|
@ -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() );
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user