mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 13:04:28 -04:00
delTree has been replaced by QDir::removeRecursively() (Qt5) (Qt4 support has been dropped)
This commit is contained in:
@ -99,7 +99,8 @@ void LibraryCreator::processLibrary(const QString & source, const QString & targ
|
||||
if(DataBaseManagement::checkValidDB(target+"/library.ydb")=="")
|
||||
{
|
||||
//se limpia el directorio ./yacreaderlibrary
|
||||
delTree(target);
|
||||
QDir d(target);
|
||||
d.removeRecursively();
|
||||
_mode = CREATOR;
|
||||
}
|
||||
else //
|
||||
|
Reference in New Issue
Block a user