1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-29 08:40:40 +02:00

Delete AudioEngine after MainWindow

This commit is contained in:
Uwe L. Korn
2013-06-22 20:08:11 +02:00
parent 8778cbd41d
commit b3ddab1320

View File

@@ -285,9 +285,6 @@ TomahawkApp::~TomahawkApp()
if ( !m_scanManager.isNull() )
delete m_scanManager.data();
if ( !m_audioEngine.isNull() )
delete m_audioEngine.data();
delete Tomahawk::Accounts::AccountManager::instance();
#ifndef ENABLE_HEADLESS
@@ -295,6 +292,10 @@ TomahawkApp::~TomahawkApp()
delete m_mainwindow;
#endif
// Main Window uses the AudioEngine, so delete it later.
if ( !m_audioEngine.isNull() )
delete m_audioEngine.data();
if ( !m_database.isNull() )
delete m_database.data();