From f99cbb94cc67b65054d0941e631b3b4b5f35a641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 19 Jun 2020 16:31:28 +0200 Subject: [PATCH] Export: Rename 'Windows Universal' to 'UWP' It's otherwise too easy to be confused between 'Windows Desktop' (Win32) and 'Windows Universal' (UWP). (cherry picked from commit 08ef0aab160be00c7a82a840c30427190cafd03f) --- modules/gdnative/gdnative_library_editor_plugin.cpp | 2 +- platform/uwp/export/export.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gdnative/gdnative_library_editor_plugin.cpp b/modules/gdnative/gdnative_library_editor_plugin.cpp index 5ffab0f80e7..7ad93661917 100644 --- a/modules/gdnative/gdnative_library_editor_plugin.cpp +++ b/modules/gdnative/gdnative_library_editor_plugin.cpp @@ -306,7 +306,7 @@ GDNativeLibraryEditor::GDNativeLibraryEditor() { platforms["Haiku"] = platform_haiku; NativePlatformConfig platform_uwp; - platform_uwp.name = "Windows Universal"; + platform_uwp.name = "UWP"; platform_uwp.entries.push_back("arm"); platform_uwp.entries.push_back("32"); platform_uwp.entries.push_back("64"); diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp index 478144069ca..c0e44d7aac0 100644 --- a/platform/uwp/export/export.cpp +++ b/platform/uwp/export/export.cpp @@ -977,7 +977,7 @@ class EditorExportPlatformUWP : public EditorExportPlatform { public: virtual String get_name() const { - return "Windows Universal"; + return "UWP"; } virtual String get_os_name() const { return "UWP"; @@ -1189,7 +1189,7 @@ public: String src_appx; - EditorProgress ep("export", "Exporting for Windows Universal", 7, true); + EditorProgress ep("export", "Exporting for UWP", 7, true); if (p_debug) src_appx = p_preset->get("custom_template/debug");