1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 17:43:59 +02:00

Add assert to make it obvious during development if an info plugin is not in the right thread, thanks Leo for the suggestion

This commit is contained in:
Jeff Mitchell
2012-04-11 20:34:42 -04:00
parent 90d3661c52
commit add5bdf8de

View File

@@ -227,6 +227,7 @@ InfoSystem::addInfoPlugin( Tomahawk::InfoSystem::InfoPluginPtr plugin )
if ( plugin.data()->thread() != m_infoSystemWorkerThreadController->worker()->thread() ) if ( plugin.data()->thread() != m_infoSystemWorkerThreadController->worker()->thread() )
{ {
Q_ASSERT( false );
tDebug() << Q_FUNC_INFO << "The object must be moved to the worker thread first, see InfoSystem::workerThread()"; tDebug() << Q_FUNC_INFO << "The object must be moved to the worker thread first, see InfoSystem::workerThread()";
return; return;
} }