[haiku-commits] Change in haiku[master]: SoftwareUpdater: Use translated application name for notification group

  • From: Gerrit <review@xxxxxxxxxxxxxxxxxxx>
  • To: waddlesplash <waddlesplash@xxxxxxxxx>, haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 6 Jul 2020 09:15:27 +0000

From Niels Sascha Reedijk <niels.reedijk@xxxxxxxxx>:

Niels Sascha Reedijk has uploaded this change for review. ( 
https://review.haiku-os.org/c/haiku/+/2994 ;)


Change subject: SoftwareUpdater: Use translated application name for 
notification group
......................................................................

SoftwareUpdater: Use translated application name for notification group

Fixes #16129
---
M src/apps/softwareupdater/CheckManager.cpp
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://git.haiku-os.org:22/haiku refs/changes/94/2994/1

diff --git a/src/apps/softwareupdater/CheckManager.cpp 
b/src/apps/softwareupdater/CheckManager.cpp
index 68909ad..d877927 100644
--- a/src/apps/softwareupdater/CheckManager.cpp
+++ b/src/apps/softwareupdater/CheckManager.cpp
@@ -308,7 +308,7 @@
 CheckManager::_SendNotification(const char* title, const char* text)
 {
        BNotification notification(B_INFORMATION_NOTIFICATION);
-       notification.SetGroup("SoftwareUpdater");
+       notification.SetGroup(B_TRANSLATE_SYSTEM_NAME("SoftwareUpdater"));
        notification.SetTitle(title);
        notification.SetContent(text);
        notification.SetOnClickApp(kAppSignature);

--
To view, visit https://review.haiku-os.org/c/haiku/+/2994
To unsubscribe, or for help writing mail filters, visit 
https://review.haiku-os.org/settings

Gerrit-Project: haiku
Gerrit-Branch: master
Gerrit-Change-Id: I9e12d647bc0c8b6e54297e75642a5800613f26ad
Gerrit-Change-Number: 2994
Gerrit-PatchSet: 1
Gerrit-Owner: Niels Sascha Reedijk <niels.reedijk@xxxxxxxxx>
Gerrit-MessageType: newchange

Other related posts:

  • » [haiku-commits] Change in haiku[master]: SoftwareUpdater: Use translated application name for notification group - Gerrit