1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-19 12:21:52 +02:00

Whoops, actually start the sync timer!

This commit is contained in:
Jeff Mitchell
2011-04-19 09:48:42 -04:00
parent d391b9bd66
commit b916125756

View File

@@ -51,9 +51,11 @@ InfoSystemCache::InfoSystemCache( QObject* parent )
QMetaObject::invokeMethod( this, "loadCache", Qt::QueuedConnection, Q_ARG( Tomahawk::InfoSystem::InfoType, type ), Q_ARG( QString, cacheDir ) );
}
}
m_syncTimer.setInterval( 60000 );
m_syncTimer.setSingleShot( false );
connect( &m_syncTimer, SIGNAL( timeout() ), SLOT( syncTimerFired() ) );
m_syncTimer.start();
}