[haiku-commits] haiku: hrev54405 - src/apps/softwareupdater

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 6 Jul 2020 10:09:30 -0400 (EDT)

hrev54405 adds 1 changeset to branch 'master'
old head: b0f530bada62bb29ad62403ceee9c36dcc8235a3
new head: 840f23676c6602d5906a73cd3cdec27e6b59d5bc
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=840f23676c66+%5Eb0f530bada62

----------------------------------------------------------------------------

840f23676c66: SoftwareUpdater: Use translated application name for notification 
group
  
  Fixes #16129
  
  Change-Id: I9e12d647bc0c8b6e54297e75642a5800613f26ad
  Reviewed-on: https://review.haiku-os.org/c/haiku/+/2994
  Reviewed-by: waddlesplash <waddlesplash@xxxxxxxxx>

                          [ Niels Sascha Reedijk <niels.reedijk@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev54405
Commit:      840f23676c6602d5906a73cd3cdec27e6b59d5bc
URL:         https://git.haiku-os.org/haiku/commit/?id=840f23676c66
Author:      Niels Sascha Reedijk <niels.reedijk@xxxxxxxxx>
Date:        Mon Jul  6 09:09:35 2020 UTC
Committer:   waddlesplash <waddlesplash@xxxxxxxxx>
Commit-Date: Mon Jul  6 14:09:27 2020 UTC

Ticket:      https://dev.haiku-os.org/ticket/16129

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
src/apps/softwareupdater/CheckManager.cpp | 2 +-

----------------------------------------------------------------------------

diff --git a/src/apps/softwareupdater/CheckManager.cpp 
b/src/apps/softwareupdater/CheckManager.cpp
index 68909ada56..d877927c06 100644
--- a/src/apps/softwareupdater/CheckManager.cpp
+++ b/src/apps/softwareupdater/CheckManager.cpp
@@ -308,7 +308,7 @@ void
 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);


Other related posts:

  • » [haiku-commits] haiku: hrev54405 - src/apps/softwareupdater - waddlesplash