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

Set no parent on Impls and explicitly delete them. Tested fine here.

This commit is contained in:
Jeff Mitchell 2012-06-21 16:15:52 -04:00
parent e3783b58e4
commit 2c6f26e36b
2 changed files with 1 additions and 2 deletions

View File

@ -67,6 +67,7 @@ Database::~Database()
qDeleteAll( m_workers );
delete m_workerRW;
qDeleteAll( m_implHash.values() );
delete m_impl;
}

View File

@ -44,7 +44,6 @@
DatabaseImpl::DatabaseImpl( const QString& dbname )
: QObject( (QObject*) QThread::currentThread() )
{
QTime t;
t.start();
@ -86,7 +85,6 @@ DatabaseImpl::DatabaseImpl( const QString& dbname )
DatabaseImpl::DatabaseImpl( const QString& dbname, bool internal )
: QObject( (QObject*) QThread::currentThread() )
{
Q_UNUSED( internal );
openDatabase( dbname, false );