1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-10-05 10:03:43 +02:00

Some more work + debug to try to fix j's issue

This commit is contained in:
Leo Franchi
2012-02-17 13:16:21 -05:00
parent 0b452cc415
commit e3f4fdfdd8
3 changed files with 28 additions and 2 deletions

View File

@@ -125,6 +125,20 @@ AtticaManager::resolvers() const
}
Content
AtticaManager::resolverForId( const QString& id ) const
{
foreach ( const Attica::Content& c, m_resolvers )
{
if ( c.id() == id )
return c;
}
return Content();
}
AtticaManager::ResolverState
AtticaManager::resolverState ( const Content& resolver ) const
{