mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-20 07:52:30 +02:00
Fix Qt5 removeDirectory code
This commit is contained in:
parent
1b65cf3f00
commit
3deef2bb10
@ -532,7 +532,7 @@ bool
|
||||
removeDirectory( const QString& dir )
|
||||
{
|
||||
#if QT_VERSION >= QT_VERSION_CHECK( 5, 0, 0 )
|
||||
return QDir aDir( dir ).removeRecursively();
|
||||
return QDir( dir ).removeRecursively();
|
||||
#else
|
||||
const QDir aDir( dir );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user