tests: Fix warning about requiring to call init after qApp

This commit is contained in:
Sergio Martins
2022-04-29 18:05:24 +01:00
parent fcf02fc8bf
commit 8d09acdf5f
3 changed files with 8 additions and 0 deletions

View File

@@ -194,4 +194,10 @@ bool Platform_qt::isGammaray()
return is;
}
Platform_qt::Platform_qt(int argc, char *argv[])
{
Q_UNUSED(argc)
Q_UNUSED(argv)
}
#endif