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

* More InfoSystem DTOR fixes.

This commit is contained in:
Christian Muehlhaeuser 2011-05-30 15:18:28 +02:00
parent af2553294f
commit 76aa0461ad

View File

@ -86,10 +86,10 @@ InfoSystem::~InfoSystem()
if ( !m_worker.isNull() )
{
m_worker.clear();
m_infoSystemWorkerThreadController->quit();
m_infoSystemWorkerThreadController->wait( 60000 );
delete m_worker.data();
delete m_infoSystemWorkerThreadController;
m_infoSystemWorkerThreadController = 0;
}
@ -97,10 +97,10 @@ InfoSystem::~InfoSystem()
if ( !m_cache.isNull() )
{
m_cache.clear();
m_infoSystemCacheThreadController->quit();
m_infoSystemCacheThreadController->wait( 60000 );
delete m_cache.data();
delete m_infoSystemCacheThreadController;
m_infoSystemCacheThreadController = 0;
}