mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-16 22:30:42 +02:00
Corrected MacOS warnings.
This commit is contained in:
parent
aad41a56b2
commit
77901e5089
1 changed files with 2 additions and 2 deletions
|
@ -329,7 +329,7 @@ void Test::createRecursiveScriptsRecursively() {
|
|||
QString directory = it.next();
|
||||
|
||||
// Only process directories
|
||||
QDir dir();
|
||||
QDir dir;
|
||||
if (!isAValidDirectory(directory)) {
|
||||
continue;
|
||||
}
|
||||
|
@ -341,7 +341,7 @@ void Test::createRecursiveScriptsRecursively() {
|
|||
QString directory2 = it2.next();
|
||||
|
||||
// Only process directories
|
||||
QDir dir();
|
||||
QDir dir;
|
||||
if (isAValidDirectory(directory2)) {
|
||||
hasNoSubDirectories = false;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue