1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

Remove useless .data()

This commit is contained in:
Uwe L. Korn
2014-10-27 19:38:44 +01:00
parent d56064141b
commit 229c2a6afe

View File

@@ -318,7 +318,7 @@ ResolverAccount::~ResolverAccount()
if ( m_resolver.isNull() ) if ( m_resolver.isNull() )
return; return;
Pipeline::instance()->removeScriptResolver( m_resolver.data()->filePath() ); Pipeline::instance()->removeScriptResolver( m_resolver->filePath() );
delete m_resolver.data(); delete m_resolver.data();
} }
@@ -368,8 +368,8 @@ ResolverAccount::authenticate()
tDebug() << Q_FUNC_INFO << "Authenticating/starting resolver, exists?" << m_resolver.data()->name(); tDebug() << Q_FUNC_INFO << "Authenticating/starting resolver, exists?" << m_resolver.data()->name();
if ( !m_resolver.data()->running() ) if ( !m_resolver->running() )
m_resolver.data()->start(); m_resolver->start();
emit connectionStateChanged( connectionState() ); emit connectionStateChanged( connectionState() );
} }
@@ -378,14 +378,14 @@ ResolverAccount::authenticate()
bool bool
ResolverAccount::isAuthenticated() const ResolverAccount::isAuthenticated() const
{ {
return !m_resolver.isNull() && m_resolver.data()->running(); return !m_resolver.isNull() && m_resolver->running();
} }
void void
ResolverAccount::deauthenticate() ResolverAccount::deauthenticate()
{ {
if ( !m_resolver.isNull() && m_resolver.data()->running() ) if ( !m_resolver.isNull() && m_resolver->running() )
m_resolver.data()->stop(); m_resolver.data()->stop();
emit connectionStateChanged( connectionState() ); emit connectionStateChanged( connectionState() );
@@ -396,7 +396,7 @@ ResolverAccount::deauthenticate()
Account::ConnectionState Account::ConnectionState
ResolverAccount::connectionState() const ResolverAccount::connectionState() const
{ {
if ( !m_resolver.isNull() && m_resolver.data()->running() ) if ( !m_resolver.isNull() && m_resolver->running() )
return Connected; return Connected;
else else
return Disconnected; return Disconnected;
@@ -452,7 +452,7 @@ ResolverAccount::path() const
void void
ResolverAccount::resolverChanged() ResolverAccount::resolverChanged()
{ {
setAccountFriendlyName( m_resolver.data()->name() ); setAccountFriendlyName( m_resolver->name() );
emit connectionStateChanged( connectionState() ); emit connectionStateChanged( connectionState() );
} }
@@ -463,7 +463,7 @@ ResolverAccount::icon() const
if ( m_resolver.isNull() ) if ( m_resolver.isNull() )
return QPixmap(); return QPixmap();
return m_resolver.data()->icon(); return m_resolver->icon();
} }