diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.cpp index 7d6392bc57..32389e78cc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.cpp @@ -31,7 +31,7 @@ namespace AzQtComponents QLocale::setDefault(QLocale(QLocale::English, QLocale::UnitedStates)); } - void AzQtApplication::setDpiScaling() + void AzQtApplication::SetDpiScaling() { QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.h b/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.h index 92f9d0f6dc..85e4400c31 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtApplication.h @@ -18,6 +18,7 @@ namespace AzQtComponents { + //! Base case for O3DE Tools Applications class AZ_QT_COMPONENTS_API AzQtApplication : public QApplication { @@ -26,9 +27,7 @@ namespace AzQtComponents //! DPI Scaling so that we support HighDpi monitors, like the Retina displays on Windows 10 //! Must be set before QApplication is initialized, - static void setDpiScaling(); - - protected: + static void SetDpiScaling(); }; } // namespace AzQtComponents diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Logger/AzQtTraceLogger.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Logger/AzQtTraceLogger.h index 1a054513cd..9518c6842d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Logger/AzQtTraceLogger.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Logger/AzQtTraceLogger.h @@ -17,7 +17,7 @@ namespace AzToolsFramework { - // Connects and disconnects TraceMessageBus and allows for logging for O3DEToolsApplications + //! Connects and disconnects TraceMessageBus and allows for logging for O3DE Tools Applications class AzQtTraceLogger : public AZ::Debug::TraceMessageBus::Handler { public: diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp index 931051a7c4..f880ad7680 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp @@ -74,7 +74,7 @@ namespace MaterialEditor : Application(argc, argv) , AzQtApplication(*argc, *argv) { - QApplication::setApplicationName("O3DE MaterialEditor"); + QApplication::setApplicationName("O3DE Material Editor"); AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_AddBuildSystemTargetSpecialization( *AZ::SettingsRegistry::Get(), GetBuildTargetName()); diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp index 62493b8f84..f5ee1f5bcb 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp @@ -70,7 +70,7 @@ namespace ShaderManagementConsole : Application(argc, argv) , AzQtApplication(*argc, *argv) { - QApplication::setApplicationName("O3DE ShaderManagementConsole"); + QApplication::setApplicationName("O3DE Shader Management Console"); // The settings registry has been created at this point, so add the CMake target AZ::SettingsRegistryMergeUtils::MergeSettingsToRegistry_AddBuildSystemTargetSpecialization(