mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-05 00:22:31 +02:00
* Dont exec the app when loading as a secondary instance.
This commit is contained in:
parent
f91d9f30ce
commit
2c91365cbb
@ -121,6 +121,9 @@ using namespace Tomahawk;
|
||||
|
||||
TomahawkApp::TomahawkApp( int& argc, char *argv[] )
|
||||
: TOMAHAWK_APPLICATION( argc, argv )
|
||||
#ifndef ENABLE_HEADLESS
|
||||
, m_mainwindow( 0 )
|
||||
#endif
|
||||
, m_headless( false )
|
||||
, m_loaded( false )
|
||||
{
|
||||
@ -188,7 +191,6 @@ TomahawkApp::init()
|
||||
#ifdef ENABLE_HEADLESS
|
||||
m_headless = true;
|
||||
#else
|
||||
m_mainwindow = 0;
|
||||
m_headless = arguments().contains( "--headless" );
|
||||
setWindowIcon( QIcon( RESPATH "icons/tomahawk-icon-128x128.png" ) );
|
||||
setQuitOnLastWindowClosed( false );
|
||||
@ -360,7 +362,8 @@ TomahawkApp::~TomahawkApp()
|
||||
if ( !m_connector.isNull() )
|
||||
delete m_connector.data();
|
||||
|
||||
Pipeline::instance()->stop();
|
||||
if ( Pipeline::instance() )
|
||||
Pipeline::instance()->stop();
|
||||
|
||||
if ( !m_servent.isNull() )
|
||||
delete m_servent.data();
|
||||
|
@ -166,7 +166,10 @@ main( int argc, char *argv[] )
|
||||
a.loadUrl( arg );
|
||||
}
|
||||
|
||||
int returnCode = a.exec();
|
||||
int returnCode = 0;
|
||||
if ( guard.isPrimaryInstance() )
|
||||
returnCode = a.exec();
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
// clean up keyboard hook
|
||||
if ( hKeyboardHook )
|
||||
|
Loading…
x
Reference in New Issue
Block a user