mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 15:29: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();
|
QString directory = it.next();
|
||||||
|
|
||||||
// Only process directories
|
// Only process directories
|
||||||
QDir dir();
|
QDir dir;
|
||||||
if (!isAValidDirectory(directory)) {
|
if (!isAValidDirectory(directory)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -341,7 +341,7 @@ void Test::createRecursiveScriptsRecursively() {
|
||||||
QString directory2 = it2.next();
|
QString directory2 = it2.next();
|
||||||
|
|
||||||
// Only process directories
|
// Only process directories
|
||||||
QDir dir();
|
QDir dir;
|
||||||
if (isAValidDirectory(directory2)) {
|
if (isAValidDirectory(directory2)) {
|
||||||
hasNoSubDirectories = false;
|
hasNoSubDirectories = false;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue