1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-13 20:41:58 +02:00

* Fixed CFBundleIdentifier in Info.plist. * Added more debug output to solve assert issue.

This commit is contained in:
Christian Muehlhaeuser 2011-03-03 22:55:08 +01:00
parent 90ef2d035f
commit ea3b9296fc
2 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>tomahawk</string>
<key>CFBundleIdentifier</key>
<string>org.tomahawk.Tomahawk</string>
<string>org.tomahawk-player.org.Tomahawk</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>

View File

@ -105,10 +105,11 @@ ControlConnection::registerSource()
void
ControlConnection::setupDbSyncConnection( bool ondemand )
{
qDebug() << Q_FUNC_INFO << ondemand << m_source->id() << ondemand << m_dbconnkey << m_dbsyncconn << m_registered;
if ( m_dbsyncconn || !m_registered )
return;
qDebug() << Q_FUNC_INFO << ondemand << m_source->id() << ondemand << m_dbconnkey;
Q_ASSERT( m_source->id() > 0 );
if( !m_dbconnkey.isEmpty() )