mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-10 16:14:40 +02:00
typo in Qt5 syntax in Infosystem/TomahawkCache
This commit is contained in:
@@ -47,7 +47,7 @@ InfoSystemCache::InfoSystemCache( QObject* parent )
|
||||
#if QT_VERSION <= QT_VERSION_CHECK( 5, 0, 0 )
|
||||
TomahawkUtils::removeDirectory( m_cacheBaseDir );
|
||||
#else
|
||||
QDir(m_cacheBaseDir)::removeRecursively();
|
||||
QDir(m_cacheBaseDir).removeRecursively();
|
||||
#endif
|
||||
TomahawkSettings::instance()->setInfoSystemCacheVersion( INFOSYSTEM_CACHE_VERSION );
|
||||
}
|
||||
|
@@ -50,7 +50,7 @@ Cache::Cache()
|
||||
#if QT_VERSION <= QT_VERSION_CHECK( 5, 0, 0 )
|
||||
TomahawkUtils::removeDirectory( m_cacheBaseDir );
|
||||
#else
|
||||
QDir( m_cacheBaseDir )::removeRecursively();
|
||||
QDir( m_cacheBaseDir ).removeRecursively();
|
||||
#endif
|
||||
TomahawkSettings::instance()->setGenericCacheVersion( CACHE_VERSION );
|
||||
}
|
||||
|
Reference in New Issue
Block a user