replace QDir.isEmpty() with QDir.count() == 0 for QT < 5.9

This commit is contained in:
Phil Olynyk 2019-05-15 17:26:56 -04:00
parent 07372487ac
commit a4cf207bd1

View File

@ -457,7 +457,11 @@ int main(int argc, char *argv[]) {
qDebug() << "Using " + GetAppData() + " as OSCAR data folder"; qDebug() << "Using " + GetAppData() + " as OSCAR data folder";
QDir newDir(GetAppData()); QDir newDir(GetAppData());
if ( ! newDir.exists() || newDir.isEmpty() ) { // directoy doesn't exist yet or is empty, try to migrate old data #if QT_VERSION < QT_VERSION_CHECK(5,9,0)
if ( ! newDir.exists() || newDir.count() == 0 ) { // directoy doesn't exist yet or is empty, try to migrate old data
#else
if ( ! newDir.exists() || newDir.isEmpty() ) { // directoy doesn't exist yet or is empty, try to migrate old data
#endif
if (QMessageBox::question(nullptr, QObject::tr("Migrate SleepyHead Data?"), if (QMessageBox::question(nullptr, QObject::tr("Migrate SleepyHead Data?"),
QObject::tr("On the next screen OSCAR will ask you to select a folder with SleepyHead data") +"\n" + QObject::tr("On the next screen OSCAR will ask you to select a folder with SleepyHead data") +"\n" +
QObject::tr("Click [OK] to go to the next screen or [No] if you do not wish to use any SleepyHead data."), QObject::tr("Click [OK] to go to the next screen or [No] if you do not wish to use any SleepyHead data."),