mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-19 23:39:42 +01:00
Remove boost::bind from TomahawkApp
This commit is contained in:
parent
61a00a909c
commit
04f948825d
@ -21,8 +21,6 @@
|
||||
|
||||
#include "TomahawkApp.h"
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
|
||||
#include "TomahawkVersion.h"
|
||||
#include "AclRegistryImpl.h"
|
||||
#include "Album.h"
|
||||
@ -226,8 +224,8 @@ TomahawkApp::init()
|
||||
tDebug() << "Init Database.";
|
||||
initDatabase();
|
||||
|
||||
Pipeline::instance()->addExternalResolverFactory( boost::bind( &JSResolver::factory, _1, _2, _3 ) );
|
||||
Pipeline::instance()->addExternalResolverFactory( boost::bind( &ScriptResolver::factory, _1, _2, _3 ) );
|
||||
Pipeline::instance()->addExternalResolverFactory( bind( &JSResolver::factory, _1, _2, _3 ) );
|
||||
Pipeline::instance()->addExternalResolverFactory( bind( &ScriptResolver::factory, _1, _2, _3 ) );
|
||||
|
||||
new ActionCollection( this );
|
||||
connect( ActionCollection::instance()->getAction( "quit" ), SIGNAL( triggered() ), SLOT( quit() ), Qt::UniqueConnection );
|
||||
|
Loading…
x
Reference in New Issue
Block a user