cui/source/dialogs/about.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 680b8eca27d6e3a160a147caf8314a81c430c7b7
Author:     Andras Timar <andras.ti...@collabora.com>
AuthorDate: Wed Apr 30 12:26:15 2025 +0200
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Thu Sep 11 07:15:30 2025 +0200

    Fix git hash link in About box
    
    Change-Id: Ieccb41f3ca9909c452101883d4c295815ee9d185
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184820
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>
    Reviewed-by: Miklos Vajna <vmik...@collabora.com>
    (cherry picked from commit ca33fc45edbc9e7f330f14513c53f83c73e78835)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188429
    Reviewed-by: guilhem <guil...@libreoffice.org>
    Tested-by: Jenkins
    Tested-by: guilhem <guil...@libreoffice.org>

diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index ca471ccf71f0..de52af0f8ce0 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -78,8 +78,7 @@ AboutDialog::AboutDialog(weld::Window *pParent)
   OUString sbuildId = GetBuildString();
   if (IsStringValidGitHash(sbuildId)) {
     const tools::Long nMaxChar = 25;
-    
m_pBuildLabel->set_uri("https://gerrit.libreoffice.org/gitweb?p=core.git;a=log;h=";
-                           + sbuildId);
+    m_pBuildLabel->set_uri("https://git.libreoffice.org/core/history/"; + 
sbuildId);
     m_pBuildLabel->set_label(sbuildId.getLength() > nMaxChar ? 
sbuildId.replaceAt(
                                  nMaxChar, sbuildId.getLength() - nMaxChar, 
u"...")
                                                              : sbuildId);

Reply via email to