2024-01-05 22:19:12 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2024-01-05 22:19:12 +01:00
|
|
|
From: "Jan Alexander Steffens (heftig)" <jan.steffens@gmail.com>
|
|
|
|
Date: Mon, 25 Mar 2019 20:30:11 +0100
|
|
|
|
Subject: [PATCH] Use remoting name for GDK application names
|
|
|
|
|
|
|
|
---
|
|
|
|
toolkit/xre/nsAppRunner.cpp | 6 +-----
|
2024-01-05 22:19:12 +01:00
|
|
|
widget/gtk/nsAppShell.cpp | 12 +++++-------
|
|
|
|
2 files changed, 6 insertions(+), 12 deletions(-)
|
2024-01-05 22:19:12 +01:00
|
|
|
|
|
|
|
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
|
2024-01-05 22:19:12 +01:00
|
|
|
index df53d2f8358ba..684105058af38 100644
|
2024-01-05 22:19:12 +01:00
|
|
|
--- a/toolkit/xre/nsAppRunner.cpp
|
|
|
|
+++ b/toolkit/xre/nsAppRunner.cpp
|
2024-01-05 22:19:12 +01:00
|
|
|
@@ -4184,11 +4184,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
|
2024-01-05 22:19:12 +01:00
|
|
|
// consistently.
|
|
|
|
|
|
|
|
// Set program name to the one defined in application.ini.
|
|
|
|
- {
|
|
|
|
- nsAutoCString program(gAppData->name);
|
|
|
|
- ToLowerCase(program);
|
|
|
|
- g_set_prgname(program.get());
|
|
|
|
- }
|
|
|
|
+ g_set_prgname(gAppData->remotingName);
|
|
|
|
|
|
|
|
// Initialize GTK here for splash.
|
|
|
|
|
|
|
|
diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
|
2024-01-05 22:19:12 +01:00
|
|
|
index 24bdd5083375b..74dd54a5ae0e6 100644
|
2024-01-05 22:19:12 +01:00
|
|
|
--- a/widget/gtk/nsAppShell.cpp
|
|
|
|
+++ b/widget/gtk/nsAppShell.cpp
|
2024-01-05 22:19:12 +01:00
|
|
|
@@ -24,6 +24,8 @@
|
2024-01-05 22:19:12 +01:00
|
|
|
# include "WakeLockListener.h"
|
|
|
|
#endif
|
|
|
|
#include "gfxPlatform.h"
|
|
|
|
+#include "nsAppRunner.h"
|
2024-01-05 22:19:12 +01:00
|
|
|
+#include "mozilla/XREAppData.h"
|
2024-01-05 22:19:12 +01:00
|
|
|
#include "ScreenHelperGTK.h"
|
|
|
|
#include "HeadlessScreenHelper.h"
|
|
|
|
#include "mozilla/widget/ScreenManager.h"
|
2024-01-05 22:19:12 +01:00
|
|
|
@@ -153,13 +155,9 @@ nsresult nsAppShell::Init() {
|
2024-01-05 22:19:12 +01:00
|
|
|
// See https://bugzilla.gnome.org/show_bug.cgi?id=747634
|
|
|
|
//
|
|
|
|
// Only bother doing this for the parent process, since it's the one
|
|
|
|
- // creating top-level windows. (At this point, a child process hasn't
|
|
|
|
- // received the list of registered chrome packages, so the
|
|
|
|
- // GetBrandShortName call would fail anyway.)
|
|
|
|
- nsAutoString brandName;
|
|
|
|
- mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
|
|
|
|
- if (!brandName.IsEmpty()) {
|
|
|
|
- gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
|
|
|
|
+ // creating top-level windows.
|
|
|
|
+ if (gAppData) {
|
|
|
|
+ gdk_set_program_class(gAppData->remotingName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|