Add Platform::organizationName()

So we don't use QCoreApplication::organizationName() directly
This commit is contained in:
Sergio Martins
2022-07-03 20:56:48 +01:00
parent 16565fcd46
commit aafa9526f6
4 changed files with 11 additions and 1 deletions

View File

@@ -410,6 +410,11 @@ QString Platform_qt::applicationName() const
return qGuiApp->applicationName();
}
QString Platform_qt::organizationName() const
{
return qGuiApp->organizationName();
}
void Platform_qt::setMouseCursor(Qt::CursorShape shape)
{
qGuiApp->setOverrideCursor(shape);