1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 16:42:26 +02:00

* Fixed thread afinity issue related to WebKit.

This commit is contained in:
Christian Muehlhaeuser 2011-04-04 13:25:10 +02:00
parent b08f4f1daf
commit fdc2f5d3e9

View File

@ -68,6 +68,13 @@ QtScriptResolver::~QtScriptResolver()
void
QtScriptResolver::resolve( const Tomahawk::query_ptr& query )
{
if ( QThread::currentThread() != thread() )
{
qDebug() << "Reinvoking in correct thread:" << Q_FUNC_INFO;
QMetaObject::invokeMethod( this, "resolve", Qt::QueuedConnection, Q_ARG(Tomahawk::query_ptr, query) );
return;
}
qDebug() << Q_FUNC_INFO << query->toString();
QString eval = QString( "resolve( '%1', '%2', '%3', '%4' );" )
.arg( query->id().replace( "'", "\\'" ) )